/* ========================================
   CONSUMIDOR ADV - LANDING PAGE CSS (OTIMIZADO V2 - COMPLETO)
   Advocacia Consumerista | Rio de Janeiro
   
   Design Strategy (V2):
   - Paleta de cores sóbria e consistente (Azul Escuro + Verde Esmeralda)
   - Redução de conflitos visuais
   - Hierarquia visual clara com fundos alternados
   - Timeline simplificada
   - Maior espaçamento entre elementos
   ======================================== */

:root {
    /* PRIMARY COLORS */
    --primary-blue: #0f172a;
    --primary-blue-light: #1e293b;
    --primary-green: #059669;
    --accent-green: #10b981;
    
    /* BACKGROUND COLORS */
    --bg-white: #ffffff;
    --bg-light-gray: #f8fafc;
    --bg-medium-gray: #f1f5f9;
    --bg-dark: #0f172a;
    
    /* TEXT COLORS */
    --text-dark: #0f172a;
    --text-medium: #334155;
    --text-light: #ffffff;
    --text-gray: #64748b;
    
    /* BORDERS & SHADOWS */
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
    --shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -1px rgba(15, 23, 42, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.05), 0 4px 6px -2px rgba(15, 23, 42, 0.025);
    --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.05), 0 10px 10px -5px rgba(15, 23, 42, 0.02);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light-gray);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.025em;
}

h1 {
    font-size: 2.75rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.25rem;
    line-height: 1.15;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.25rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
    font-size: 1.05rem;
}

a {
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */

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

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    min-height: 3rem;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--text-light);
    box-shadow: 0 4px 6px -1px rgba(5, 150, 105, 0.2), 0 2px 4px -1px rgba(5, 150, 105, 0.1);
}

.btn-primary:hover {
    background-color: var(--accent-green);
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(5, 150, 105, 0.3), 0 4px 6px -2px rgba(5, 150, 105, 0.15);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    width: fit-content;
    min-width: 280px;
}

.whatsapp-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}

/* ========================================
   HEADER
   ======================================== */

.header {
    background-color: var(--primary-blue);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    background-color: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(8px);
}

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

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

.logo-image {
    max-height: 48px;
    width: auto;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-light);
}

.btn-whatsapp-header {
    padding: 0.6rem 1.2rem;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    min-height: auto;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background-color: var(--bg-white);
        border-bottom: 1px solid var(--border-color);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav.active {
        max-height: 500px;
    }

    .nav-link {
        color: var(--text-dark);
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
        text-align: left;
    }

    .nav-link:hover {
        color: var(--primary-green);
    }

    .btn-whatsapp-header {
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
        text-align: left;
        justify-content: flex-start;
        border-radius: 0;
        box-shadow: none;
        min-height: auto;
        font-size: 1rem;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    background-color: var(--bg-white);
    padding: 4rem 0 2rem;
    border-bottom: 1px solid var(--border-color);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-title {
    color: var(--primary-blue);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-medium);
    max-width: 90%;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-asset {
    width: 100%;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
}

/* TRUST BADGES */

.trust-badges-horizontal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.badge {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}

.badge-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 0.5rem;
    background-color: var(--bg-medium-gray);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon-lucide {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.badge span {
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .hero {
        padding: 2rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-image {
        order: -1;
    }

    .trust-badges-horizontal {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* ========================================
   COMO FUNCIONA SECTION
   ======================================== */

.como-funciona {
    background-color: var(--bg-light-gray);
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.section-header h2 {
    color: var(--primary-blue);
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* TIMELINE */

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: var(--border-color);
    z-index: 0;
}

.timeline-item {
    position: relative;
    z-index: 1;
    text-align: center;
    background-color: var(--bg-white);
    padding: 2rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-green);
}

.timeline-number {
    width: 48px;
    height: 48px;
    background-color: var(--primary-green);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: -3.5rem auto 1.5rem;
    box-shadow: 0 0 0 6px var(--bg-white), var(--shadow-sm);
    transition: transform 0.3s ease;
}

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

.timeline-title {
    font-size: 1.125rem;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.timeline-description {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin: 0;
}

.timeline-badge {
    display: none;
}

@media (max-width: 1024px) {
    .timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .timeline::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .como-funciona {
        padding: 3rem 0;
    }

    .timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline::before {
        top: 0;
        bottom: 0;
        left: 24px;
        width: 2px;
        height: auto;
    }

    .timeline-item {
        padding: 1.5rem 1.5rem 1.5rem 4rem;
        text-align: left;
    }

    .timeline-number {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
    }
}

/* ========================================
   PROBLEMAS SECTION
   ======================================== */

.problemas {
    background-color: var(--bg-white);
    padding: 5rem 0;
}

.problemas-group {
    margin-top: 3rem;
}

.problemas-group:first-of-type {
    margin-top: 0;
}

.problemas-group + .problemas-group {
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.problemas-group-header {
    margin-bottom: 2rem;
}

.problemas-group-header h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.problemas-group-header p {
    color: var(--text-gray);
    font-size: 1rem;
}

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

.problema-card {
    background-size: cover;
    background-position: center;
    border-radius: 0.75rem;
    padding: 2rem;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.problema-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 60%, rgba(15, 23, 42, 0.1) 100%);
    z-index: 1;
}

.problema-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.problema-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.problema-icon-badge {
    width: 40px;
    height: 40px;
    background-color: var(--primary-green);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.problema-icon-lucide {
    width: 20px;
    height: 20px;
    color: var(--text-light);
}

.problema-title {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.problema-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

@media (max-width: 1024px) {
    .problemas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .problemas {
        padding: 3rem 0;
    }

    .problemas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .problema-card {
        min-height: 240px;
        padding: 1.5rem;
    }

    .problema-title {
        font-size: 1.1rem;
    }

    .problema-description {
        font-size: 0.9rem;
    }
}

/* ========================================
   CTA INTERMEDIÁRIA
   ======================================== */

.cta-mid {
    background-color: var(--primary-blue);
    background-image: radial-gradient(circle at top right, var(--primary-blue-light), transparent 50%);
    padding: 5rem 0;
    text-align: center;
}

.cta-mid-box {
    max-width: 600px;
    margin: 0 auto;
}

.cta-mid-title {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cta-mid-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.cta-mid .btn-primary {
    background-color: var(--primary-green);
}

.cta-mid .btn-primary:hover {
    background-color: var(--accent-green);
}

@media (max-width: 768px) {
    .cta-mid {
        padding: 3rem 0;
    }

    .cta-mid-title {
        font-size: 1.5rem;
    }

    .cta-mid-subtitle {
        font-size: 1rem;
    }
}

/* ========================================
   POR QUE ESCOLHER SECTION
   ======================================== */

.por-que {
    background-color: var(--bg-light-gray);
    padding: 5rem 0;
}

.por-que-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.por-que-card {
    background-color: var(--bg-white);
    border-radius: 0.75rem;
    padding: 2.25rem 1.75rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.por-que-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-green);
}

.por-que-card h3 {
    color: var(--primary-blue);
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
}

.por-que-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin: 0;
}

.por-que-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-medium-gray);
}

.por-que-icon-lucide {
    width: 40px;
    height: 40px;
    color: var(--primary-green);
    stroke-width: 2;
}

@media (max-width: 1024px) {
    .por-que-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .por-que {
        padding: 3rem 0;
    }

    .por-que-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .por-que-card {
        padding: 1.75rem 1.35rem;
    }

    .por-que-icon-wrap {
        width: 60px;
        height: 60px;
    }

    .por-que-icon-lucide {
        width: 32px;
        height: 32px;
    }

    .por-que-card h3 {
        font-size: 1.05rem;
    }

    .por-que-card p {
        font-size: 0.9rem;
    }
}

/* ========================================
   PRÓXIMOS PASSOS SECTION
   ======================================== */

.proximos-passos {
    background-color: var(--bg-white);
    padding: 5rem 0;
}

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

.passo-card {
    background-color: var(--bg-light-gray);
    border-radius: 0.75rem;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.passo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-green);
}

.passo-numero {
    width: 56px;
    height: 56px;
    background-color: var(--bg-white);
    color: var(--primary-green);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.passo-card:hover .passo-numero {
    border-color: var(--primary-green);
    background-color: var(--primary-green);
    color: var(--text-light);
}

.passo-titulo {
    color: var(--primary-blue);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.passo-descricao {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 1024px) {
    .passos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .proximos-passos {
        padding: 3rem 0;
    }

    .passos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .passo-card {
        padding: 2rem 1.5rem;
    }

    .passo-numero {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .passo-titulo {
        font-size: 1.1rem;
    }

    .passo-descricao {
        font-size: 0.9rem;
    }
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq {
    background-color: var(--bg-light-gray);
    padding: 5rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-item.active {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1.05rem;
    color: var(--primary-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-weight: 600;
    transition: all 0.2s ease;
}

.faq-question:hover {
    color: var(--primary-green);
}

.faq-item.active .faq-question {
    color: var(--primary-green);
}

.faq-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-medium);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .faq {
        padding: 3rem 0;
    }

    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }

    .faq-answer-content {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* ========================================
   EQUIPE SECTION
   ======================================== */

.equipe {
    background-color: var(--bg-white);
    padding: 5rem 0;
}

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

.equipe-card {
    background-color: var(--bg-light-gray);
    border-radius: 0.75rem;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.equipe-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.equipe-photo-wrap {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 3px solid var(--bg-white);
}

.equipe-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.equipe-name {
    color: var(--primary-blue);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.equipe-oab {
    color: var(--primary-green);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.equipe-bio {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.equipe-atendimento {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.equipe-endereco {
    text-align: left;
    font-size: 0.9rem;
}

.equipe-endereco p {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.equipe-endereco ul {
    list-style: none;
}

.equipe-endereco li {
    padding-left: 1.25rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.equipe-endereco li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-green);
}

.equipe-info-box {
    background-color: var(--bg-white);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 2rem;
    border-left: 4px solid var(--primary-blue);
    font-size: 0.9rem;
    color: var(--text-medium);
}

@media (max-width: 768px) {
    .equipe {
        padding: 3rem 0;
    }

    .equipe-grid {
        grid-template-columns: 1fr;
    }

    .equipe-card {
        padding: 2rem 1.5rem;
    }

    .equipe-photo-wrap {
        width: 100px;
        height: 100px;
    }

    .equipe-name {
        font-size: 1.1rem;
    }

    .equipe-endereco li:nth-child(n+4) {
        display: none;
    }
}

/* ========================================
   CTA FINAL SECTION
   ======================================== */

.cta-final {
    background-color: var(--bg-light-gray);
    padding: 4rem 0;
    text-align: center;
}

.cta-final-box {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-white);
    border-radius: 0.75rem;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
}

.cta-kicker {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.cta-title {
    color: var(--primary-blue);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-subtitle {
    color: var(--text-medium);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.cta-final-button {
    min-width: 280px;
}

.cta-support {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .cta-final {
        padding: 2rem 0;
    }

    .cta-final-box {
        padding: 2rem 1.5rem;
    }

    .cta-title {
        font-size: 1.4rem;
    }

    .cta-subtitle {
        font-size: 0.95rem;
    }

    .cta-final-button {
        width: 100%;
    }
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background-color: var(--primary-blue);
    color: var(--text-light);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-section a:hover {
    color: var(--accent-green);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }
}

/* ========================================
   STICKY WHATSAPP BUTTON
   ======================================== */

.sticky-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    color: white;
    transition: all 0.3s ease;
}

.sticky-whatsapp:hover {
    background-color: var(--accent-green);
    transform: scale(1.1);
}

.sticky-whatsapp-img {
    width: 30px;
    height: 30px;
}

@media (max-width: 480px) {
    .sticky-whatsapp {
        bottom: 1rem;
        right: 1rem;
        width: 52px;
        height: 52px;
    }

    .sticky-whatsapp-img {
        width: 26px;
        height: 26px;
    }
}

/* ========================================
   UTILITIES
   ======================================== */

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

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
