/* RESET E BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--texto-primario);
    background: var(--branco);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* CORES - Sistema profissional com hierarquia de texto */
:root {
    /* Cores da marca (exatas da logo) */
    --azul-petroleo: #0a2e5a; /* Ajustado para melhor contraste */
    --azul-escuro: #081f3f;
    --azul-medio: #1a4a7a;
    --verde-inst: #2E7D5A;
    --verde-claro: #4A9B73;
    --laranja-cta: #C56A00; /* Ajustado para contraste WCAG AA */
    
    /* Neutros */
    --branco: #FFFFFF;
    --gelo: #F8FAFC;
    --cinza-claro: #F1F5F9;
    --cinza-medio: #94A3B8;
    --cinza-escuro: #64748B;
    
    /* Sistema de texto com contraste WCAG AA */
    --texto-primario: #4d4d4d;      /* Cinza da logo - corpo principal */
    --texto-secundario: #4d4d4d;    /* Cinza da logo - subtítulos */
    --texto-terciario: #6b6b6b;     /* Cinza mais claro - legendas */
    --texto-links: #0c3767;         /* Azul da logo - links */
    --texto-inverso: #FFFFFF;       /* Branco - para fundos escuros */
    
    /* Estados */
    --verde-sucesso: #047857; /* Ajustado para melhor contraste */
    --erro: #DC2626;
}

/* UTILITÁRIOS */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-block {
    max-width: 1000px;
    margin: 0 auto;
    text-align: justify;
    text-justify: inter-word;
}

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

@media (max-width: 768px) {
    .text-block {
        text-align: justify;
        text-justify: inter-word;
        max-width: 100%;
    }
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--laranja-cta); /* Usar variável atualizada */
    color: #FFFFFF;
    box-shadow: 0 4px 6px rgba(197, 106, 0, 0.3);
}

.btn-primary:hover {
    background: #A85C00; /* Hover mais escuro */
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(197, 106, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #0a2e5a; /* Cor mais escura para melhor contraste */
    border: 2px solid #0a2e5a;
    font-weight: 600; /* Adicionar peso para melhor legibilidade */
}

.btn-secondary:hover {
    background: #0a2e5a;
    color: var(--branco);
}

.btn-submit-documento {
    background: rgba(46, 125, 90, 0.9);
    color: #FFFFFF;
    box-shadow: 0 4px 6px rgba(46, 125, 90, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    line-height: 1.2;
}

.btn-submit-documento:hover {
    background: rgba(31, 90, 67, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(46, 125, 90, 0.4);
}

.btn-submit-documento .btn-price {
    font-size: 16px;
    font-weight: 800;
}

#modalPayment .btn-cancel-payment {
    background: rgba(197, 106, 0, 0.9);
    color: #FFFFFF;
    border: 2px solid rgba(197, 106, 0, 0.9);
    font-weight: 700;
    box-shadow: 0 4px 6px rgba(197, 106, 0, 0.25);
}

#modalPayment .btn-cancel-payment:hover {
    background: rgba(168, 92, 0, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(197, 106, 0, 0.35);
}

/* HERO */
.hero {
    min-height: 80vh;
    background: var(--gelo);
    color: var(--texto-primario);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(30,95,142,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.logo-container {
    margin-bottom: 50px;
    margin-top: 60px; /* Reduzido de 80px para 60px */
    display: flex;
    justify-content: center;
}

.logo-img {
    max-width: 350px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
    width: 350px;
    height: 105px;
    object-fit: contain;
    margin-bottom: 40px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 50px 0;
}

/* BADGE STF */
.badge-stf {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--verde-inst);
    color: var(--branco);
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.4px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.logo {
    display: none;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 50px;
    line-height: 1.2;
    color: var(--azul-petroleo);
    letter-spacing: -0.02em;
}

.hero .subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    margin-bottom: 40px;
    color: var(--texto-secundario);
    font-weight: 400;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* SEÇÕES */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--azul-petroleo);
    letter-spacing: -0.01em;
}

/* PROBLEMA */
.problema {
    background: var(--cinza-claro);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.options-grid {
    display: grid;
    grid-template-columns: 450px 450px;
    gap: 40px;
    margin: 40px auto 0;
    max-width: 940px;
    width: 100%;
    justify-content: center;
    align-items: stretch;
}

.card {
    background: var(--branco);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--azul-petroleo);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    font-size: 24px;
}

.card h3 {
    color: var(--azul-petroleo);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    text-align: center;
}

.card p {
    text-align: justify;
    text-justify: inter-word;
    color: var(--texto-secundario);
    line-height: 1.7;
}

.card ul {
    text-align: center;
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.card li {
    margin-bottom: 8px;
    color: var(--texto-secundario);
    line-height: 1.8;
    font-size: 15px;
}

/* TABELA COMPARATIVA */
.comparison-wrap {
    background: var(--branco);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
    overflow: hidden;
    border: 1px solid #E5E7EB;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead th {
    background: var(--azul-petroleo);
    color: var(--branco);
    font-weight: 800;
    text-align: left;
    padding: 18px 16px;
    font-size: 16px;
}

.comparison-table tbody td {
    padding: 16px;
    border-top: 1px solid #E5E7EB;
    font-size: 16px;
    vertical-align: top;
}

.comparison-table tbody tr:nth-child(even) td {
    background: #FAFAFB;
}

@media (max-width: 768px) {
    .comparison-table thead {
        display: none;
    }

    .comparison-table,
    .comparison-table tbody,
    .comparison-table tr,
    .comparison-table td {
        display: block;
        width: 100%;
    }

    .comparison-table tr {
        border-top: 1px solid #E5E7EB;
    }

    .comparison-table tbody td {
        border-top: none;
        padding: 12px 16px;
    }

    .comparison-table tbody td:nth-child(1) {
        font-weight: 800;
        background: #FAFAFB;
    }
}

/* CARDS GRID */
.document-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.document-card {
    background-color: rgba(10, 46, 90, 0.9);
    border: 1px solid var(--azul-petroleo);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
}

.document-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.document-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    background: var(--branco);
    color: var(--azul-petroleo);
    padding: 12px 20px;
    border-bottom: 1px solid var(--azul-petroleo);
    text-align: center;
}

.document-card p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
    line-height: 1.5;
    color: white;
    padding: 16px 20px;
    flex: 1;
    text-align: justify;
    text-justify: inter-word;
}

/* SOLUÇÃO */
.solução-content {
    width: 100%;
}

/* CUSTO REAL */
.legal {
    background: var(--branco);
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.legal-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFF 100%);
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    padding: 26px;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.legal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(30, 58, 138, 0.14);
}

.legal-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.legal-card h3 {
    color: var(--azul-petroleo);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    text-align: center;
}

.legal-card p {
    color: var(--texto-secundario);
    line-height: 1.7;
    text-align: justify;
    text-justify: inter-word;
}

@media (max-width: 768px) {
    .legal-grid {
        grid-template-columns: 1fr;
    }
    .legal-card p {
        text-align: justify;
        text-justify: inter-word;
    }
}

/* COMO FUNCIONA */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step {
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--laranja-cta);
    color: var(--branco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.progress-bar {
    height: 4px;
    background: var(--cinza-claro);
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--laranja-cta);
    width: 0%;
    transition: width 1s ease;
}

/* CUSTO REAL */
.cost-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.cost-card {
    background: var(--branco);
    border-radius: 14px;
    padding: 26px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cost-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.12);
}

.cost-icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.cost-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--azul-petroleo);
    margin-bottom: 8px;
}

.cost-card p {
    color: var(--texto-secundario);
    line-height: 1.6;
}

.cost-card-highlight {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.18) 0%, rgba(245, 158, 11, 0.06) 55%, #FFFFFF 100%);
    border: 2px solid rgba(245, 158, 11, 0.55);
}

.cost-card-highlight h3 {
    color: var(--laranja-cta);
    font-weight: 700;
}

/* PREÇO */
.preço {
    background: var(--azul-petroleo);
    color: var(--branco);
    text-align: center;
}

.preço .section-title {
    color: var(--branco);
}

.price-tag {
    font-size: 64px;
    font-weight: 800;
    color: var(--laranja-cta);
    margin: 20px 0;
}

.price-description {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.checklist {
    max-width: 400px;
    margin: 40px auto;
    text-align: left;
}

.checklist-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 18px;
}

.checklist-item::before {
    content: '✓';
    color: var(--verde-sucesso);
    font-weight: bold;
    margin-right: 15px;
    font-size: 20px;
}

/* FAQ */
.faq-item {
    background: var(--branco);
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: var(--branco);
    border: none;
    width: 100%;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--texto-primario);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--cinza-claro);
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.step h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--azul-petroleo);
    margin-bottom: 10px;
}

.step p {
    color: var(--texto-secundario);
    line-height: 1.7;
    font-size: 16px;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 16px;
    line-height: 1.7;
    color: var(--texto-secundario);
}

.faq-answer.show {
    padding: 20px;
    max-height: 500px;
}

/* CTA FINAL */
.cta-final {
    background: linear-gradient(135deg, var(--laranja-cta) 0%, #D97706 100%);
    color: var(--branco);
    text-align: center;
}

.cta-final h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 30px;
}

.cta-final .btn {
    background: rgba(46, 125, 90, 0.9);
    color: #FFFFFF;
    font-size: 24px;
    padding: 20px 40px;
}

.cta-final .btn:hover {
    background: rgba(31, 90, 67, 0.95);
    color: #FFFFFF;
}

/* FOOTER */
.footer {
    background: var(--azul-petroleo);
    color: var(--branco);
    padding: 40px 0 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--branco);
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

 .modal-content-video {
     max-width: 900px;
 }

 .modal-content-lgpd {
     max-width: 800px;
     max-height: 80vh;
     display: flex;
     flex-direction: column;
 }

 .lgpd-content {
     max-height: calc(80vh - 120px);
     overflow-y: auto;
     padding-right: 10px;
 }

 .lgpd-content::-webkit-scrollbar {
     width: 6px;
 }

 .lgpd-content::-webkit-scrollbar-track {
     background: #f1f1f1;
     border-radius: 3px;
 }

 .lgpd-content::-webkit-scrollbar-thumb {
     background: #888;
     border-radius: 3px;
 }

 .lgpd-content::-webkit-scrollbar-thumb:hover {
     background: #555;
 }

 .video-embed {
     width: 100%;
     border-radius: 12px;
     overflow: hidden;
     background: #000;
     position: relative;
 }

 .video-embed #ytPlayer,
 .video-embed iframe {
     width: 100%;
     aspect-ratio: 16 / 9;
     display: block;
 }

 .video-overlay {
     position: absolute;
     inset: 0;
     pointer-events: auto;
     z-index: 10;
 }

.video-options {
    display: none;
}

 .video-options-actions {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 14px;
 }

 #modalVideo #btnDigital {
     background: rgba(46, 125, 90, 0.9);
     color: #FFFFFF;
     box-shadow: 0 4px 6px rgba(46, 125, 90, 0.3);
 }

 #modalVideo #btnDigital:hover {
     background: rgba(31, 90, 67, 0.95);
     transform: translateY(-2px);
     box-shadow: 0 8px 12px rgba(46, 125, 90, 0.4);
 }

 #modalVideo #btnDownload {
     background: rgba(10, 46, 90, 0.9);
     color: #FFFFFF;
     border: 2px solid rgba(10, 46, 90, 0.9);
     font-weight: 700;
 }

 #modalVideo #btnDownload:hover {
     background: rgba(10, 46, 90, 1);
     color: #FFFFFF;
 }

 .modal-content-payment {
     max-width: 520px;
 }

 .pix-payment-container {
     text-align: center;
 }

 .pix-qrcode-image {
     width: 260px;
     max-width: 100%;
     height: auto;
     display: block;
     margin: 0 auto;
 }

 .btn-copy-pix {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 340px;
     max-width: 100%;
     padding: 12px 14px;
     border-radius: 8px;
     border: 2px solid #94A3B8;
     background: var(--gelo);
     color: var(--texto-primario);
     font-weight: 700;
     cursor: pointer;
     transition: all 0.2s ease;
 }

 .btn-copy-pix:hover {
     border-color: var(--azul-petroleo);
 }

 .btn-copy-pix.is-copied {
     background: var(--verde-sucesso) !important;
     border-color: var(--verde-sucesso) !important;
     color: #fff !important;
 }

 #modalPayment .pix-qrcode-image {
     width: 260px !important;
     max-width: 100% !important;
     max-height: 260px !important;
     height: auto !important;
     object-fit: contain;
 }


.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--cinza-escuro);
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--azul-petroleo);
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    font-size: 16px;
    color: var(--texto-primario);
    transition: all 0.3s ease;
    background: var(--branco);
}

.form-group input::placeholder {
    color: var(--cinza-medio);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--azul-petroleo);
    box-shadow: 0 0 0 3px rgba(30, 95, 142, 0.1);
}

 /* RESPONSIVO */
 @media (max-width: 768px) {
     .hero h1 {
         font-size: 32px;
     }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .options-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
        max-width: 100%;
    }
    
    .document-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .document-card {
        padding: 0;
        min-height: 100px;
        background-color: rgba(10, 46, 90, 0.9) !important;
        border: 1px solid var(--azul-petroleo) !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
        width: 100%;
    }
    
    .document-card h3 {
        font-size: 16px;
        padding: 10px 16px;
    }
    
    .document-card p {
        font-size: 13px;
        padding: 12px 16px;
    }
    .hero-content {
        padding: 30px 0;
    }

    .logo-container {
        margin-top: 20px;
        margin-bottom: 25px;
    }
    
    .logo-img {
        max-width: 200px;
    }
    
    .price-tag {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 25px;
    }

    .options-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 25px;
    }

    .document-cards-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 25px;
    }
    
    .document-card {
        padding: 0;
        min-height: 90px;
        background-color: rgba(10, 46, 90, 0.9) !important;
        border: 1px solid var(--azul-petroleo) !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
        width: 100%;
    }
    
    .document-card h3 {
        font-size: 15px;
        padding: 8px 12px;
    }
    
    .document-card p {
        font-size: 12px;
        padding: 10px 12px;
    }
    .steps {
        grid-template-columns: 1fr;
    }
    .modal-content {
        padding: 30px 20px;
    }

     .video-options-actions {
         grid-template-columns: 1fr;
     }
}

@media (max-width: 480px) {
    .section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        min-height: 70vh;
    }
    
    .logo-img {
        max-width: 200px;
    }
    
    .price-tag {
        font-size: 48px;
    }
    
    /* CORREÇÕES AGRESSIVAS MOBILE < 480px */
    
    /* Badge STF - remover position absolute */
    .badge-stf {
        position: static;
        display: inline-block;
        margin: 20px auto;
        text-align: center;
    }
    
    /* Modal Close - virar static */
    .modal-close {
        position: static;
        margin-bottom: 20px;
        text-align: center;
        display: block;
    }
    
    /* Form inputs - evitar zoom iOS */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    select,
    textarea {
        font-size: 16px !important;
        -webkit-appearance: none;
        appearance: none;
        border-radius: 8px;
    }
    
    /* PIX Button - largura 100% */
    .btn-copy-pix {
        width: 100% !important;
        max-width: 300px;
    }
    
    /* Cost/Legal Grid - coluna única */
    .cost-grid,
    .legal-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    /* Hero H1 - tamanho mínimo garantido */
    .hero h1 {
        font-size: 28px !important;
        line-height: 1.3;
        margin-bottom: 30px;
    }
    
    /* Cards e elementos com width fixo */
    .card {
        width: 100%;
        max-width: none;
    }
    
    /* Modal content - padding ajustado */
    .modal-content {
        padding: 25px 20px !important;
        margin: 10px;
    }
    
    /* Footer links - empilhados */
    .footer-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    /* Checklist - coluna única */
    .checklist {
        grid-template-columns: 1fr !important;
        max-width: 100%;
    }
    
    /* Video options - coluna única */
    .video-options-actions {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    /* Price section - ajustes */
    .price-tag {
        font-size: 42px;
    }
    
    /* Container padding mais agressivo */
    .container {
        padding: 0 12px !important;
    }
    
    /* Hero buttons - 100% width */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        font-size: 18px;
    }
    
    /* Logo centering */
    .logo-img {
        margin: 0 auto;
    }
    
    /* Steps gap reduction */
    .steps {
        gap: 25px;
    }
    
    /* CTA button font size */
    .cta-final .btn {
        font-size: 18px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

.typing-effect {
    overflow: hidden;
    white-space: nowrap;
    animation: typing 2s steps(40, end);
}

/* Skip link for accessibility - completamente escondido visualmente */
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    z-index: -1;
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--azul-petroleo);
    color: var(--branco);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 700;
}

.cookie-content a:hover {
    color: #ffffff;
    opacity: 0.9;
}

.btn-cookie {
    background: #8A4B00;
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-cookie:hover {
    background: #6F3C00;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .btn-cookie {
        width: 100%;
    }
}
