/* ========================================
   VARIÁVEIS E RESET
   ======================================== */
:root {
    /* Paleta de cores HSL exata */
    --primary: hsl(220, 60%, 18%);
    --secondary: hsl(45, 55%, 55%);
    --whatsapp: hsl(142, 70%, 40%);
    --background: hsl(220, 30%, 97%);
    --muted: hsl(220, 20%, 93%);
    --foreground: hsl(220, 40%, 13%);
    --accent: hsl(25, 85%, 55%);
    --destructive: hsl(0, 84.2%, 60.2%);
    
    /* Tipografia */
    --font-display: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
    
    /* Outros */
    --radius: 0.75rem;
    --shadow-light: 0 2px 8px rgba(0,0,0,0.12);
    --shadow-dark: 0 2px 8px rgba(0,0,0,0.5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Text utilities */
.text-secondary {
    color: var(--secondary);
}

/* ========================================
   ANIMAÇÕES
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulseCta {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

@keyframes pulseWhatsapp {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

/* ========================================
   1. NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
    animation: slideDown 0.6s ease-out;
}

.navbar.scrolled {
    background: var(--primary);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.navbar-logo {
    max-width: 180px;
    height: auto;
}

.btn-whatsapp-header {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--whatsapp);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-whatsapp-header:hover {
    background: hsl(142, 70%, 35%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* ========================================
   2. HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    padding-bottom: 2rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsla(220, 60%, 18%, 0.8);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 10;
    padding-top: 6rem;
    padding-bottom: 2rem;
}

.hero-content {
    max-width: 750px;
    text-align: center;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: hsla(45, 55%, 45%, 0.85);
    color: white;
    padding: 0.4rem 1.25rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: fadeUp 0.6s ease-out 0.2s both;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: var(--shadow-dark);
    animation: fadeUp 0.6s ease-out 0.35s both;
}

.hero-title .text-highlight {
    color: var(--secondary);
    font-weight: 700;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 400;
    animation: fadeUp 0.6s ease-out 0.5s both;
}

.valor-destaque {
    color: var(--secondary);
    font-weight: 700;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--whatsapp);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: fadeUp 0.6s ease-out 0.65s both, pulseCta 2s infinite 1s;
}

.btn-cta-primary:hover {
    background: hsl(142, 70%, 35%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.btn-cta-primary i {
    font-size: 1.5rem;
}

.btn-cta-primary.large {
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
}

.hero-micro {
    margin-top: 1rem;
    font-size: 0.875rem;
    opacity: 0.85;
    animation: fadeUp 0.6s ease-out 0.8s both;
}

.hero-arrow {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

/* ========================================
   2.5 STATS SECTION (Seção Separada)
   ======================================== */
.stats-section {
    background: hsl(220, 60%, 18%);
    color: white;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    display: inline;
}

.stat-plus {
    display: inline;
    color: var(--secondary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-left: 0.1rem;
}

.stat-label {
    font-size: 0.85rem;
    color: white;
    opacity: 0.85;
    margin-top: 0.5rem;
    max-width: 220px;
    line-height: 1.4;
}

/* ========================================
   3. RIGHTS SECTION
   ======================================== */
.rights-section {
    padding: 4rem 0;
    background: var(--background);
}

@media (min-width: 768px) {
    .rights-section {
        padding: 6rem 0;
    }
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: var(--shadow-light);
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.right-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border: 1px solid var(--muted);
    border-radius: var(--radius);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeUp 0.6s ease-out both;
    position: relative;
    overflow: hidden;
}

.right-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--secondary), hsl(45, 60%, 65%));
    transition: height 0.4s ease;
}

.right-card:hover::before {
    height: 100%;
}

.right-card:nth-child(1) { animation-delay: 0.1s; }
.right-card:nth-child(2) { animation-delay: 0.2s; }
.right-card:nth-child(3) { animation-delay: 0.3s; }
.right-card:nth-child(4) { animation-delay: 0.4s; }
.right-card:nth-child(5) { animation-delay: 0.5s; }
.right-card:nth-child(6) { animation-delay: 0.6s; }
.right-card:nth-child(7) { animation-delay: 0.7s; }
.right-card:nth-child(8) { animation-delay: 0.8s; }

.right-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-6px) scale(1.01);
    border-color: var(--secondary);
}

.right-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsla(45, 55%, 55%, 0.1), hsla(45, 55%, 55%, 0.2));
    border-radius: 50%;
    transition: all 0.4s ease;
}

.right-card:hover .right-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, var(--secondary), hsl(45, 60%, 65%));
    color: white;
    box-shadow: 0 6px 16px rgba(218, 165, 32, 0.4);
}

.right-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--foreground);
    transition: color 0.3s ease;
}

.right-card:hover .right-title {
    color: var(--secondary);
}

.right-desc {
    font-size: 0.95rem;
    color: hsl(220, 20%, 40%);
    line-height: 1.6;
}

.rights-closing {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.section-cta {
    text-align: center;
}

.cta-micro {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: hsl(220, 20%, 50%);
}

/* ========================================
   4. PRAZO ALERT SECTION
   ======================================== */
.prazo-alert-section {
    padding: 4rem 0;
    background: hsl(45, 100%, 96%);
}

.prazo-alert-box {
    background: hsl(45, 100%, 90%);
    border: 3px solid hsl(25, 85%, 55%);
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.prazo-icon {
    font-size: 4rem;
    color: hsl(25, 85%, 55%);
    margin-bottom: 1rem;
}

.prazo-alert-box h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: hsl(25, 85%, 45%);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prazo-alert-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.prazo-alert-box p:last-of-type {
    font-weight: 700;
    color: hsl(0, 84.2%, 40%);
    margin-bottom: 2rem;
}

/* ========================================
   5. CONTRAST SECTION
   ======================================== */
.contrast-section {
    padding: 4rem 0;
    background: var(--muted);
}

@media (min-width: 768px) {
    .contrast-section {
        padding: 6rem 0;
    }
}

.contrast-table {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.contrast-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--primary);
    color: white;
}

.contrast-col-header {
    padding: 1.5rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.contrast-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--muted);
}

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

.contrast-cell {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    background: white;
}

.contrast-cell.without {
    border-right: 1px solid var(--muted);
}

.contrast-cell.without i {
    color: var(--destructive);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contrast-cell.with i {
    color: var(--secondary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* ========================================
   6. VALORES SECTION (Quanto Você Pode Receber)
   ======================================== */
.valores-section {
    padding: 4rem 0;
    background: white;
}

.valores-table {
    background: var(--background);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.valores-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    border-bottom: 1px solid var(--muted);
    transition: background 0.3s ease;
}

.valores-row:hover {
    background: hsl(220, 30%, 99%);
}

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

.valores-item {
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--foreground);
}

.valores-item i {
    color: var(--whatsapp);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.valores-desc {
    padding: 1.25rem 1.5rem;
    color: hsl(220, 20%, 50%);
    font-size: 0.95rem;
    line-height: 1.6;
    border-left: 1px solid var(--muted);
}

.valores-note {
    margin-top: 2rem;
    text-align: center;
    font-style: italic;
    color: hsl(220, 20%, 50%);
    font-size: 0.95rem;
}

/* ========================================
   7. DIFERENCIAIS SECTION (Por Que a Dra. Giselle)
   ======================================== */
.diferenciais-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, hsl(220, 60%, 18%) 0%, hsl(220, 55%, 25%) 100%);
    position: relative;
    overflow: hidden;
}

.diferenciais-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--secondary), hsl(45, 60%, 60%));
    color: var(--primary);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
    animation: fadeInUp 0.6s ease-out;
}

.diferenciais-badge i {
    font-size: 1.25rem;
}

.diferenciais-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="0.5" opacity="0.05"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
    pointer-events: none;
}

.diferenciais-section .section-title {
    color: white;
    position: relative;
    z-index: 2;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
    position: relative;
    z-index: 2;
}

.diferencial-card {
    background: rgba(255, 255, 255, 0.98);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.diferencial-card:nth-child(1) { animation-delay: 0.1s; }
.diferencial-card:nth-child(2) { animation-delay: 0.2s; }
.diferencial-card:nth-child(3) { animation-delay: 0.3s; }
.diferencial-card:nth-child(4) { animation-delay: 0.4s; }
.diferencial-card:nth-child(5) { animation-delay: 0.5s; }
.diferencial-card:nth-child(6) { animation-delay: 0.6s; }

.diferencial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--whatsapp), var(--secondary));
    transition: height 0.4s ease;
}

.diferencial-card:hover::before {
    height: 100%;
}

.diferencial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--whatsapp);
}

.diferencial-icon {
    font-size: 3rem;
    color: var(--whatsapp);
    margin-bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsla(142, 70%, 40%, 0.1), hsla(142, 70%, 40%, 0.2));
    border-radius: 50%;
    transition: all 0.4s ease;
    position: relative;
}

.diferencial-card:hover .diferencial-icon {
    transform: rotate(360deg) scale(1.15);
    background: linear-gradient(135deg, var(--whatsapp), hsl(142, 70%, 50%));
    color: white;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.diferencial-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--foreground);
    line-height: 1.3;
    transition: color 0.3s ease;
}

.diferencial-card:hover .diferencial-title {
    color: var(--whatsapp);
}

.diferencial-desc {
    color: hsl(220, 20%, 45%);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   8. TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    padding: 4rem 0;
    background: var(--background);
}

@media (min-width: 768px) {
    .testimonials-section {
        padding: 6rem 0;
    }
}

.testimonials-carousel {
    position: relative;
    max-width: 1100px;
    margin: 0 auto 3rem;
    padding: 0 3rem;
}

.carousel-container {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 calc(50% - 0.75rem);
    background: white;
    border: 1px solid var(--muted);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.testimonial-quote {
    color: var(--secondary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.875rem;
}

.testimonial-author strong {
    font-size: 1rem;
    color: var(--foreground);
}

.testimonial-author span {
    color: hsl(220, 20%, 50%);
}

.testimonial-case {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: var(--secondary);
    color: white;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    width: fit-content;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    background: white;
    color: var(--secondary);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

/* ========================================
   6. HOW IT WORKS SECTION
   ======================================== */
.how-it-works-section {
    padding: 4rem 0;
    background: var(--muted);
}

@media (min-width: 768px) {
    .how-it-works-section {
        padding: 6rem 0;
    }
}

.steps-list {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: slideInLeft 0.6s ease-out both;
}

.step-item:nth-child(1) { animation-delay: 0.1s; }
.step-item:nth-child(2) { animation-delay: 0.2s; }
.step-item:nth-child(3) { animation-delay: 0.3s; }
.step-item:nth-child(4) { animation-delay: 0.4s; }
.step-item:nth-child(5) { animation-delay: 0.5s; }

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--secondary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.step-desc {
    font-size: 0.95rem;
    color: hsl(220, 20%, 40%);
    line-height: 1.7;
}

/* ========================================
   7. URGENCY SECTION
   ======================================== */
.urgency-section {
    padding: 4rem 0;
    background: var(--primary);
    color: white;
    text-align: center;
}

@media (min-width: 768px) {
    .urgency-section {
        padding: 6rem 0;
    }
}

.section-title-light {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    text-shadow: var(--shadow-dark);
}

.urgency-text {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
}

.cta-micro-light {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    opacity: 0.85;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 700px;
    margin: 3rem auto 0;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.guarantee-item i {
    color: var(--secondary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* ========================================
   8. FOOTER
   ======================================== */
.footer {
    background: hsl(220, 55%, 25%);
    color: white;
    padding: 2.5rem 0 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    padding-bottom: 2rem;
}

.footer-left,
.footer-right {
    flex: 1;
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-icon {
    font-size: 2rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.footer-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: white;
}

.footer-oab {
    font-size: 0.875rem;
    opacity: 0.85;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: scale(1.1);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--secondary);
    width: 18px;
    font-size: 1rem;
    flex-shrink: 0;
}

.footer-bottom {
    background: hsl(220, 55%, 20%);
    padding: 1rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin: 0;
}

/* ========================================
   9. WHATSAPP FLOAT
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--whatsapp);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulseWhatsapp 2s infinite;
}

.whatsapp-float:hover {
    background: hsl(142, 70%, 35%);
    transform: scale(1.1);
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */
@media (max-width: 768px) {
    .navbar-logo {
        max-width: 140px;
    }

    .btn-whatsapp-header {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .hero {
        padding-bottom: 2rem;
        min-height: 100vh;
    }

    .hero-bg-image {
        object-position: center top;
    }

    .hero-overlay {
        background: hsla(220, 60%, 25%, 0.75);
    }

    .hero-container {
        padding-top: 5rem;
    }

    .hero-arrow {
        bottom: 2rem;
    }

    .stats-section {
        padding: 2rem 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .stat-item {
        padding: 0.5rem 0;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
        max-width: 100%;
    }

    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .right-card {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .right-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .valores-row {
        grid-template-columns: 1fr;
    }
    
    .valores-desc {
        border-left: none;
        border-top: 1px solid var(--muted);
    }
    
    .prazo-alert-box {
        padding: 1.5rem;
    }
    
    .prazo-alert-box h3 {
        font-size: 1.35rem;
    }
    
    .diferenciais-section {
        padding: 4rem 0;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }
    
    .diferencial-card {
        padding: 2rem 1.5rem;
    }
    
    .diferencial-icon {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }
    
    .diferencial-card {
        padding: 2rem 1.5rem;
    }
    
    .diferencial-icon {
        font-size: 3rem;
    }

    .contrast-header,
    .contrast-row {
        grid-template-columns: 1fr;
    }

    .contrast-cell.without {
        border-right: none;
        border-bottom: 1px solid var(--muted);
    }

    .testimonials-carousel {
        padding: 0 3rem;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }

    .guarantees-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact {
        align-items: center;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .navbar-logo {
        max-width: 120px;
    }

    .btn-whatsapp-header {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .hero {
        padding-bottom: 2rem;
    }
    
    .hero-container {
        padding-top: 4rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.35rem 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .stats-section {
        padding: 1.75rem 0;
    }
    
    .stats-grid {
        gap: 1.25rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-plus {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        margin-top: 0.35rem;
    }

    .btn-cta-primary {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    .right-emoji {
        font-size: 2.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 1.25rem;
        right: 1.25rem;
    }
}