:root {
    --navy: #000000;
    --navy-light: #111111;
    --navy-dark: #000000;
    --gold: #bd9653; /* Tom de ouro rico da logo */
    --gold-hover: #d2b378;
    --green: #25d366;
    --green-hover: #20b858;
    --text-light: #e0e6ed;
    --text-dark: #333333;
    --bg-light: #f4f6f9;
    --white: #ffffff;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), #e8c97a, var(--gold));
    width: 0%;
    z-index: 10000;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(189, 150, 83, 0.5);
}

/* Golden Decorative Line */
.golden-line {
    position: fixed;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold) 0%, transparent 50%, var(--gold) 100%);
    z-index: 9998;
    opacity: 0.3;
}

/* Selection color */
::selection {
    background: var(--gold);
    color: var(--navy);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--navy);
}

p {
    font-size: 1rem;
    color: #555;
}

/* Buttons & Accessibility */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    min-height: 44px;
    position: relative;
    overflow: hidden;
}

/* Shimmer Effect nos botões */
.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
    transition: none;
    transform: translateX(-100%);
}

.btn:hover::after {
    animation: shimmer 0.8s ease forwards;
}

@keyframes shimmer {
    to { transform: translateX(100%); }
}

.btn-primary {
    background-color: var(--green);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-primary:hover {
    background-color: var(--green-hover);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 10px 24px;
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--navy);
    box-shadow: 0 5px 20px rgba(189, 150, 83, 0.3);
}

.btn-block {
    width: 100%;
}

/* Header */
.header {
    background-color: transparent; /* Starts transparent */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: background-color 0.4s ease, padding 0.4s ease, border-bottom 0.4s ease;
}

.header.scrolled {
    background-color: rgba(0, 0, 0, 0.98); /* Solid Black */
    padding: 10px 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.header.scrolled .logo-img {
    height: 50px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-left: 15px;
}

.logo-text small {
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 2px;
    display: block;
    margin-top: 4px;
}

.logo-img {
    height: 70px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav a:hover:not(.btn)::after,
.nav a.active:not(.btn)::after {
    width: 100%;
}

.nav a:hover:not(.btn),
.nav a.active:not(.btn) {
    color: var(--gold);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    padding-top: 80px;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin-right: auto; /* Força alinhamento à esquerda e libera a foto na direita */
}

.trust-badge {
    display: inline-block;
    background-color: rgba(197, 160, 89, 0.15);
    border: 1px solid rgba(197, 160, 89, 0.4);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: fadeInDown 1s ease 0.3s both;
    backdrop-filter: blur(10px);
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.headline {
    color: var(--white);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.6s both;
}

.headline span {
    color: var(--gold);
    position: relative;
}

/* Sublinhado animado dourado no headline */
.headline span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    animation: lineExpand 1.2s ease 1.8s forwards;
}

@keyframes lineExpand {
    to { width: 100%; }
}

.sub-headline {
    color: var(--text-light);
    font-size: 1.15rem;
    max-width: 600px;
    margin-bottom: 40px;
    font-weight: 400;
    animation: fadeInUp 1s ease 0.9s both;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease 1.2s both;
}

.hero-actions .btn {
    min-width: 220px;
}

.hero-secure-text {
    font-size: 0.85rem;
    color: var(--text-light);
    opacity: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    animation: fadeInUp 1s ease 1.5s forwards;
}

.hero-secure-text i {
    color: var(--gold);
}

/* Shape Divider Elementor Style */
.custom-shape-divider-bottom-hero {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
}
.custom-shape-divider-bottom-hero svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}
.custom-shape-divider-bottom-hero .shape-fill {
    fill: var(--bg-light); /* Matching next section color if changed, or white */
}

/* Urgency Bar */
.urgency-bar {
    background: linear-gradient(135deg, var(--gold) 0%, #d2b378 50%, var(--gold) 100%);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    padding: 20px 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.urgency-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.urgency-text {
    color: var(--navy);
    font-size: 1.3rem;
    margin: 0;
    font-weight: 700;
}

.urgency-icons {
    display: flex;
    gap: 30px;
}

.icon-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.icon-item:hover {
    transform: scale(1.1);
}

.icon-item i {
    font-size: 1.5rem;
    transition: var(--transition);
}

.icon-item:hover i {
    transform: rotateY(360deg);
    transition: transform 0.6s ease;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
}

.about-image-wrapper:hover .about-image {
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--gold);
    color: var(--navy);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
}

.section-tag {
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.about-subtitle {
    font-family: var(--font-body);
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-highlights {
    display: grid;
    gap: 15px;
    margin-top: 30px;
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--navy);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: var(--navy);
}

.highlight-item i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* Services */
.services {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--gold);
}

.section-title.text-left {
    text-align: left;
}
.section-title.text-left::after {
    left: 0;
    transform: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition-slow);
    border-bottom: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

/* Glow lateral sutil ao hover */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(189, 150, 83, 0.05), transparent);
    transition: left 0.7s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--gold);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Differentials */
.differentials {
    padding: 100px 0;
    background-color: var(--white);
}

.diff-content {
    max-width: 800px;
    margin: 0 auto;
}

.diff-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.diff-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--navy);
    transition: var(--transition);
}

.diff-item:hover {
    border-left-color: var(--gold);
    transform: translateX(5px);
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.diff-icon {
    background-color: var(--navy);
    color: var(--gold);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.diff-text h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

/* Social Proof */
.social-proof {
    padding: 100px 0;
    background-color: var(--navy);
    color: var(--white);
}

.social-proof .section-title {
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
    margin-bottom: 60px;
}

.stat-item {
    padding: 30px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 8px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width 0.8s ease;
}

.stat-item:hover::after {
    width: 100%;
}

.stat-item:hover {
    background-color: rgba(255,255,255,0.08);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--gold);
    font-weight: 700;
    display: inline-block;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--gold);
    font-weight: 700;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 10px;
}

.testimonials {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-card {
    background-color: var(--white);
    color: var(--text-dark);
    padding: 40px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.quote-icon {
    color: var(--gold);
    font-size: 3rem;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 30px;
}

.testimonial-card p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    color: #444;
}

.testimonial-author {
    font-weight: 600;
    color: var(--navy);
}

/* Swiper Overrides */
.swiper {
    width: 100%;
    padding-bottom: 50px !important;
}
.swiper-slide {
    height: auto;
}
.testimonial-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.swiper-pagination-bullet-active {
    background-color: var(--gold) !important;
}

/* Contact & Triagem */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--navy);
    font-weight: 500;
}

.contact-details i {
    color: var(--gold);
    font-size: 1.3rem;
    width: 25px;
    text-align: center;
}

/* Redes Sociais no Perfil */
.social-icon-large {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: transparent;
    color: var(--gold);
    border-radius: 50%;
    font-size: 1.5rem;
    transition: var(--transition);
    border: 2px solid var(--gold);
    text-decoration: none;
}

.social-icon-large:hover {
    background-color: var(--gold);
    color: var(--navy);
    transform: scale(1.1) rotate(5deg);
}

/* Animações Globais Adicionais */
@keyframes floatPhoto {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* Glow pulsante dourado */
@keyframes goldGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(189, 150, 83, 0.2); }
    50% { box-shadow: 0 0 20px rgba(189, 150, 83, 0.4); }
}

/* Bloco de Mídia no Contato (Foto + Extra Info) */
.contact-media-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 15px;
    align-items: start;
}

.contact-image-small {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-bottom: 4px solid var(--gold);
    transition: transform 0.5s ease;
    object-fit: cover;
}

.contact-image-small:hover {
    transform: scale(1.02);
}

.contact-extra-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Hor\u00e1rio de Atendimento */
.contact-schedule {
    background: var(--white);
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-schedule h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-schedule h4 i {
    color: var(--gold);
}

.schedule-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
    color: #555;
}

.schedule-row:last-child {
    border-bottom: none;
}

.schedule-time {
    font-weight: 700;
    color: var(--navy);
}

.schedule-time.urgent {
    color: var(--green);
    font-weight: 800;
}

/* Selos de Confian\u00e7a no Contato */
.contact-trust-badges {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.contact-trust-badges.vertical {
    margin-top: 0;
    flex-direction: column;
    gap: 10px;
}

.trust-badge-item {
    flex: 1;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 15px 10px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.contact-trust-badges.vertical .trust-badge-item {
    flex-direction: row;
    padding: 12px 15px;
    text-align: left;
    justify-content: flex-start;
}

.trust-badge-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.trust-badge-item i {
    font-size: 1.5rem;
    color: var(--gold);
}

.contact-trust-badges.vertical .trust-badge-item i {
    font-size: 1.2rem;
}

.trust-badge-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
}.contact-form-wrapper {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-top: 5px solid var(--gold);
}

.triagem-form h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--navy);
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2);
}

.form-disclaimer {
    font-size: 0.8rem;
    color: #999;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.form-disclaimer i {
    color: var(--gold);
    font-size: 0.75rem;
}

/* Footer */
.footer {
    background-color: var(--navy-dark);
    color: var(--text-light);
    padding: 80px 0 30px;
    border-top: 4px solid var(--gold);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.footer-logo {
    display: block;
    margin-bottom: 10px;
}

.logo-img-footer {
    height: 120px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.footer-contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
    margin-bottom: 15px;
}

.footer-contact-info p {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.footer-contact-info i {
    color: var(--gold);
}

.footer-info p {
    color: var(--text-light);
    opacity: 0.8;
}

.trust-bar {
    display: flex;
    gap: 30px;
    margin: 20px 0;
    padding: 15px 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
}

.trust-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #999;
    font-size: 0.9rem;
    filter: grayscale(100%);
    font-weight: 500;
}

.trust-icon i {
    color: var(--gold);
    font-size: 1.2rem;
}

.footer-copy {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    font-size: 0.85rem;
    color: #888;
    line-height: 1.8;
}

.footer-copy a {
    color: #888;
    text-decoration: none;
    transition: var(--transition);
}

.footer-copy a:hover {
    color: var(--gold);
}

/* LGPD Banner */
.lgpd-banner {
    position: fixed;
    bottom: -100%; /* Hidden initially */
    left: 20px;
    max-width: 400px;
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: bottom 0.5s ease;
    border-left: 4px solid var(--navy);
}

.lgpd-banner.show {
    bottom: 20px;
}

.lgpd-banner p {
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

.lgpd-banner a {
    color: var(--gold);
    text-decoration: underline;
}

/* Floating WhatsApp Pulse */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--green);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    color: var(--white);
    transform: scale(1.1);
}
.floating-whatsapp.pulse {
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: var(--green-hover);
    animation: none; /* Stop pulse on hover */
}

/* Responsive */
@media (max-width: 992px) {
    .headline { font-size: 2.8rem; }
    .urgency-content { flex-direction: column; text-align: center; }
    .urgency-icons { justify-content: center; }
    .contact-container { grid-template-columns: 1fr; }
    .contact-media-block { grid-template-columns: 1fr; }
    .about-container { grid-template-columns: 1fr; }
    .about-experience-badge { right: 20px; bottom: 20px; }
    .hero-overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.4) 100%);
    }
}

@media (max-width: 768px) {
    .nav { display: none; }
    .headline { font-size: 2.2rem; }
    .hero { 
        padding-top: 100px; 
        padding-bottom: 100px; /* Espaço para não bater na onda */
        min-height: auto; /* Permite crescer se o texto for longo */
        text-align: center; 
    }
    .trust-badge { margin: 0 auto 25px; }
    .sub-headline { margin: 0 auto 30px; }
    .hero-actions { 
        display: flex; 
        justify-content: center; 
        flex-direction: column; /* Botões empilhados no mobile ficam melhores */
        align-items: center;
        gap: 15px;
    }
    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    .hero-secure-text { 
        justify-content: center; 
        margin-top: 20px;
    }
    .section-title.text-left { text-align: center; }
    .section-title.text-left::after { left: 50%; transform: translateX(-50%); }
    .lgpd-banner { left: 10px; right: 10px; max-width: none; bottom: -120%; }
    .lgpd-banner.show { bottom: 10px; }
}
