:root {
    --navy: #0A192F;
    --usa-red: #B22234;
    --usa-blue: #3C3B6E;
    --white: #FFFFFF;
    --light-grey: #F4F4F4;
    --gold: #FFD700;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: var(--white);
    color: var(--navy);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(rgba(10, 25, 47, 0.9), rgba(10, 25, 47, 0.9)), 
                url('https://images.unsplash.com/photo-1526304640581-d334cdbbf45e?q=80&w=2070');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.badge {
    background: var(--usa-blue);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    border: 1px solid var(--white);
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.tagline {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 300;
    color: #ccc;
}

/* --- Form & Buttons --- */
.cta-box input {
    padding: 15px;
    width: 300px;
    border-radius: 5px;
    border: none;
    margin-bottom: 10px;
    font-size: 1rem;
}

.btn-primary {
    background: var(--usa-red);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #8e1b29;
    transform: scale(1.05);
}

/* --- Comparison Section --- */
.comparativo { 
    padding: 30px 0; 
    background: var(--light-grey); 
}

.section-title { 
    text-align: center; 
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 20px;
    color: #666;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 10px 0;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    background: #fff;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed; 
    min-width: 700px; 
}

/* --- Pillar Column --- */
.pilar-col {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    z-index: 10;
    background-color: #f1f1f1 !important;
    border-right: 2px solid #ddd !important;
    font-family: 'Montserrat', sans-serif; 
    font-weight: 700;                      
    text-transform: uppercase;             
    letter-spacing: 0.5px;
    width: 150px;          
    min-width: 150px;
    font-size: 0.85rem;   
    text-align: center !important;
    padding: 15px 12px !important;
    color: #444;
    line-height: 1.2;
}

thead th.pilar-col {
    z-index: 11;
    background-color: #e0e0e0 !important;
    text-transform: uppercase;
    font-size: 0.8rem;
}

/* --- Mobile Specific Adjustment --- */
@media (max-width: 768px) {
    @media (max-width: 768px) {
        .pilar-col {
            width: 90px;
            min-width: 90px;
            font-size: 0.7rem; 
            padding: 12px 8px !important;
            text-align: center;
        }
    }

    .col-metodo, .col-brasil {
        width: calc((100% - 90px) / 2); 
    }

    .table-responsive::before {
        content: "← Deslize para comparar EUA x Brasil →";
        display: block;
        text-align: center;
        padding: 8px;
        font-size: 1rem;
        color: var(--usa-red);
        font-weight: bold;
        background: #fff;
        border-top: 1px solid #eee;
    }
}

.col-metodo, .col-brasil {
    width: calc((100% - 150px) / 2); 
}

/* --- Data Columns --- */
.col-metodo, .col-brasil {
    width: calc((100% - 100px) / 2); 
}

.comparison-table th, .comparison-table td {
    padding: 15px 10px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
    text-align: center;
    word-wrap: break-word;
}

.highlight-header {
    background-color: var(--navy) !important;
    color: var(--white) !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    border-bottom: 4px solid var(--usa-red) !important;
}

.highlight-body {
    background-color: rgba(10, 25, 47, 0.04);
    font-weight: 600;
    color: var(--navy);
    font-size: 0.85rem;
}

.brasil-body {
    color: #777;
    font-size: 0.8rem;
}

.comparativo-footer {
    margin-top: 15px; 
    padding: 15px;
    background: #f8f9fa; 
    border-radius: 8px;
    font-size: 0.85rem;
    color: #666;
    text-align: left;
    line-height: 1.4; 
}

@media (max-width: 768px) {
    .comparativo-footer {
        font-size: 0.75rem; 
        padding: 12px;
        line-height: 1.3; 
        margin-top: 10px;
        border: 1px solid #ddd; 
    }
}

/* --- Plans --- */
.planos { padding: 60px 0; }
.planos h2 { text-align: center; margin-bottom: 50px; }
.grid-planos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card-plano {
    border: 1px solid #ddd;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    position: relative;
}

.card-plano.featured {
    border: 2px solid var(--usa-blue);
    transform: scale(1.05);
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.label-vagas {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--usa-red);
    color: white;
    padding: 5px 15px;
    font-size: 0.7rem;
    border-radius: 50px;
}

/* --- Footer --- */
footer {
    background: var(--navy);
    color: #888;
    padding: 40px 0;
    text-align: center;
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    
    .pilar-col {
        width: 85px; 
        min-width: 85px;
        font-size: 0.7rem;
    }

    .table-responsive::after {
        content: "← Deslize para comparar →";
        display: block;
        text-align: center;
        padding: 8px;
        font-size: 0.7rem;
        color: var(--usa-red);
        font-weight: bold;
        background: #fff;
        border-top: 1px solid #eee;
    }
}

@media (max-width: 768px) {
    .comparison-table {
        min-width: 620px; 
    }
    
    .pilar-col {
        width: 85px; 
        min-width: 85px;
        font-size: 0.7rem;
    }
}

.brasil-header {
    background-color: #eee !important; 
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.8rem; 
    letter-spacing: 1px;
    padding: 25px 15px;
    text-align: center;
}

@media (max-width: 768px) {
    .brasil-header {
        font-size: 0.8rem;
        padding: 15px 10px;
    }
}

@media (max-width: 768px) {
    .pilar-col.pilar-small {
        font-size: 10px !important;
        line-height: 1.1; 
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 !important; 
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-top: 10px;
        line-height: 1.3;
    }

    .cta-box {
        margin-top: 20px;
    }
}

.destaque-valor-usa {
    color: #009739; 
    font-size: 25px;
    font-weight: 900;
    text-shadow: 
        -2px -2px 0 #fff,  
         2px -2px 0 #fff,
        -2px  2px 0 #fff,
         2px  2px 0 #fff,
         3px 4px 6px rgba(0, 0, 0, 0.4); 
    
    line-height: 1; 
}

@media (max-width: 768px) {
    .destaque-valor-usa {
        font-size: 25px; 
        text-shadow: 
            -1px -1px 0 #fff,  
             1px -1px 0 #fff,
            -1px  1px 0 #fff,
             1px  1px 0 #fff,
             2px 2px 4px rgba(0, 0, 0, 0.5);
    }
}

.cenario-brasil-alerta {
    color: #B22234; 
    font-size: 24px;
    font-weight: 700;
    text-shadow: 
        -1.5px -1.5px 0 #fff,  
         1.5px -1.5px 0 #fff,
        -1.5px  1.5px 0 #fff,
         1.5px  1.5px 0 #fff;
    opacity: 1; 
}

@media (max-width: 768px) {
    .cenario-brasil-alerta {
        font-size: 18px;
        text-shadow: 
            -1px -1px 0 #fff,  
             1px -1px 0 #fff,
            -1px  1px 0 #fff,
             1px  1px 0 #fff;
    }
}

.usa-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 10px;
    text-align: center;
}

.usa-title-premium {
    font-weight: 900;
    text-transform: uppercase;
    color: #0A192F;
    font-size: 3.5rem;
    line-height: 1.1;
    margin: 0;
}

.usa-flag-icon {
    width: 60px; 
    height: auto;
    border-radius: 4px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
}

.mobile-only { display: none; } 

@media (max-width: 768px) {
    .usa-title-container {
        flex-direction: column; 
        gap: 15px;
    }

    .mobile-only { 
        display: block; 
    }

    .usa-title-premium {
        font-size: 2rem !important; 
        text-align: center;
    }

    .usa-flag-icon {
        width: 100px; 
        margin-top: 5px;
    }
}

.grid-planos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 30px 0;
}

.card-plano {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 10px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card-plano:hover {
    transform: translateY(-10px);
}

.card-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: #333;
}

.plano-desc {
    color: #666;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.card-body ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.card-body ul li {
    padding: 10px 0;
    font-size: 0.95rem;
    color: #444;
    border-bottom: 1px dashed #f1f1f1;
}

.card-plano.featured {
    border: 2px solid #B22234;
    position: relative;
    scale: 1.05;
    z-index: 2;
}

.label-vagas {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #B22234;
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.card-plano.corporate {
    border: 1px solid #0A192F;
    background: linear-gradient(180deg, #fff 0%, #f9f9f9 100%);
}

.card-plano.corporate h3 {
    color: #0A192F;
}

@media (max-width: 768px) {
    .card-plano.featured {
        scale: 1;
        margin: 20px 0;
    }
    .grid-planos {
        grid-template-columns: 1fr;
    }
}

.plano-gatilho {
    font-size: 0.85rem;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #555;
    min-height: 40px; 
}

.featured .plano-gatilho {
    color: #B22234; 
    font-weight: 600;
}

.btn-plano {
    display: block;
    text-align: center;
    padding: 15px;
    margin-top: auto; 
    background: #0A192F;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-usa {
    background: #B22234;
    box-shadow: 0 4px 15px rgba(178, 34, 52, 0.3);
}

.btn-gold {
    background: #1a1a1a;
    border: 1px solid #D4AF37;
    color: #D4AF37;
}

.btn-plano:hover {
    transform: translateY(-3px);
    filter: brightness(1.2);
}

.como-funciona {
    padding: 50px 0;
    background-color: #fbfbfb; 
}

.subtitulo-lean {
    display: block;
    color: #B22234; 
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.titulo-como-funciona {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: #0A192F; 
    margin-bottom: 25px;
    line-height: 1.1;
}

.destaque-dolar {
    border-bottom: 3px solid #D4AF37; 
    padding-bottom: 5px;
}

.introducao-metodo {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
}

.img-metodo {
    box-shadow: 0 15px 40px rgba(0,0,0,0.1); 
    border-radius: 12px;
    max-width: 90%; 
    height: 100%;      
    display: block;    
    object-fit: cover; 
}

.card-fase-lean {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-fase-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
}

.bg-green { background-color: #009739; }
.bg-red { background-color: #B22234; }
.bg-navy { background-color: #0A192F; }

.card-fase-lean h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.card-fase-lean p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.saiba-mais-link {
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    color: #009739; 
    transition: all 0.3s ease;
}

.bg-red + h4 + p + .saiba-mais-link { color: #B22234; } 
.saiba-mais-corporate { color: #D4AF37 !important; } 

.saiba-mais-link i {
    transition: transform 0.3s ease;
}

.saiba-mais-link:hover {
    filter: brightness(1.2);
}

.saiba-mais-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .titulo-como-funciona {
        font-size: 2.2rem;
    }
    .como-funciona {
        padding: 60px 0;
    }
    .card-fase-lean {
        margin-bottom: 40px;
    }
    .img-metodo {
        max-width: 100%;
    }
}

.bloco-fases-lean {
    display: flex;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden; 
    margin-top: 30px;
}

.card-fase-lean {
    flex: 1; 
    padding: 40px 30px;
    border-right: 1px solid #f0f0f0; 
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: background 0.3s ease;
}

.card-fase-lean:last-child {
    border-right: none;
}

.card-fase-lean:hover {
    background: #fafafa;
}

.icon-fase-wrap {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.card-fase-lean h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    white-space: nowrap; 
}

.card-fase-lean p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .bloco-fases-lean {
        flex-direction: column;
        border-radius: 12px;
    }
    
    .card-fase-lean {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding: 30px;
    }
    
    .card-fase-lean:last-child {
        border-bottom: none;
    }
    
    .card-fase-lean h4 {
        white-space: normal;
    }
}

.introducao-metodo-container {
    text-align: center;
    padding: 20px 0;
    font-family: 'Montserrat', sans-serif;
}

.metodo-comparativo-texto {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    color: #555;
}

.metodo-comparativo-texto.tradicional span {
    text-decoration: line-through;
    color: #b22234; 
    opacity: 0.7;
}

.metodo-divisor {
    margin: 15px 0;
    color: #0A192F;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metodo-divisor::before, .metodo-divisor::after {
    content: "";
    height: 1px;
    width: 50px;
    background: #ddd;
    margin: 0 15px;
}

.metodo-comparativo-texto.inovador {
    font-size: 1.3rem;
    color: #0A192F;
    font-weight: 500;
}

.metodo-comparativo-texto.inovador strong {
    color: #009739; 
    font-weight: 800;
}

.metodo-comparativo-texto.inovador u {
    text-decoration-color: #D4AF37; 
    text-underline-offset: 4px;
}

@media (max-width: 768px) {
    .metodo-comparativo-texto.inovador {
        font-size: 1.15rem;
    }
}

.img-zoom-container {
    position: relative;
    display: inline-block;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.img-zoom-container:hover {
    transform: scale(1.02); 
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.4); 
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.img-zoom-container:hover .img-overlay {
    opacity: 1;
}

.overlay-content {
    color: #fff;
    text-align: center;
}

.overlay-content i {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
    color: #D4AF37; 
}

.overlay-content span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .img-overlay {
        background: rgba(0,0,0,0.1); 
        opacity: 1;
        height: 40px;
        top: auto;
        bottom: 0;
    }
    .overlay-content i { display: none; }
    .overlay-content span {
        font-size: 0.7rem;
        background: rgba(10, 25, 47, 0.8);
        padding: 5px 15px;
        border-radius: 20px;
    }
}

.modal-zoom {
    display: none; 
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.95); 
    cursor: zoom-out;
}

.modal-conteudo {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 1100px;
    border-radius: 8px;
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {transform: scale(0.7); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.fechar-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.fechar-modal:hover {
    color: #D4AF37;
}

@media (max-width: 700px) {
    .modal-conteudo { width: 100%; }
}

@media (max-width: 768px) {
    .planos {
        padding: 40px 0 !important; 
    }

    .planos h2 {
        margin-bottom: 25px !important;
        font-size: 1.8rem; 
    }

    .grid-planos {
        gap: 15px !important; 
        padding: 0 10px; 
    }

    .card-plano.featured {
        scale: 1 !important; 
        margin: 10px 0 !important; 
        border-width: 2px; 
    }

    .card-plano {
        padding: 20px !important; 
    }
}

.o-que-nao-esperar {
    padding: 40px 0;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.titulo-negativo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #0A192F;
    margin-bottom: 20px;
}

.destaque-red {
    color: #F79E1B;
}

.introducao-negativa {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.grid-negativo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: left;
}

.card-negativo {
    padding: 25px;
    border-left: 4px solid #eee;
    transition: all 0.3s ease;
}

.card-negativo:hover {
    border-left-color: #B22234;
    background-color: #fdfdfd;
}

.card-negativo i {
    color: #B22234;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card-negativo h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0A192F;
    margin-bottom: 10px;
}

.card-negativo p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.5;
}

.frase-fechamento {
    margin-top: 50px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    font-style: italic;
    color: #0A192F;
}

@media (max-width: 768px) {
    .o-que-nao-esperar { padding: 30px 0; }
    .grid-negativo { grid-template-columns: 1fr; gap: 20px; }
    .card-negativo { padding: 15px; }
    .destaque-red {
    color: #F79E1B;
}
}

.card-negativo h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #F79E1B; 
    margin-bottom: 10px;
    text-transform: uppercase; 
    letter-spacing: 0.5px;
}

.card-negativo i {
    color: #F79E1B;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card-negativo:hover {
    border-left-color: #F79E1B;
    background-color: #fdfdfd;
}

.faq-secao {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.titulo-faq {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #0A192F;
    margin-bottom: 10px;
}

.destaque-orange {
    color: #B22234; 
}

.subtitulo-faq {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
}

.faq-item {
    background: #fff;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #eee;
    overflow: hidden;
}

.faq-pergunta {
    width: 100%;
    padding: 20px 25px;
    background: #fff;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #0A192F;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-pergunta:hover {
    background: #fdfdfd;
    color: #B22234;
}

.faq-pergunta i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.faq-resposta {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fff;
}

.faq-resposta p {
    padding: 0 25px 20px 25px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.faq-item.active .faq-resposta {
    max-height: 200px; 
}

.faq-item.active .faq-pergunta i {
    transform: rotate(180deg);
}

.secao-precos {
    padding: 20px 0;
    background-color: #fff;
}

.titulo-precos {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #0A192F;
}

.grid-precos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.card-preco {
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.preco-header {
    font-weight: 800;
    letter-spacing: 2px;
    color: #0A192F;
    margin-bottom: 20px;
}

.preco-valor {
    font-size: 3.5rem;
    font-weight: 900;
    color: #0A192F;
    line-height: 1;
}

.preco-valor .moeda { font-size: 1.2rem; vertical-align: super; }
.preco-valor .centavos { font-size: 1.5rem; }

.custom-full {
    font-size: 1.8rem !important;
    padding: 20px 0;
    color: #0A192F;
}

.preco-parcela {
    margin: 15px 0 30px;
    color: #666;
    font-size: 1rem;
}

.featured-preco {
    border: 2px solid #F79E1B;
    transform: scale(1.05);
    background: #fff;
}

.label-recomendado {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #F79E1B;
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
}

.btn-comprar {
    display: block;
    padding: 15px;
    background: #0A192F;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 800;
    transition: 0.3s;
}

.btn-laranja { background: #F79E1B; }

.btn-outline-gold {
    background: transparent;
    border: 2px solid #D4AF37;
    color: #D4AF37;
}

.btn-comprar:hover { transform: translateY(-3px); filter: brightness(1.1); }

@media (max-width: 768px) {
    .grid-precos { grid-template-columns: 1fr; gap: 40px; }
    .featured-preco { transform: scale(1); }
    .preco-valor { font-size: 2.8rem; }
}

.featured-preco {
    border: 2px solid #B22234; 
    transform: scale(1.05);
    background: #fff;
    box-shadow: 0 15px 35px rgba(178, 34, 52, 0.1); 
}

.label-recomendado {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #B22234; 
    color: #fff;
    padding: 6px 25px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(178, 34, 52, 0.3);
}

.btn-vermelho {
    background: #B22234;
    color: #fff;
    border: none;
}

.btn-vermelho:hover {
    background: #8e1b29; 
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(178, 34, 52, 0.4);
}
.anti-guru {
    color: var(--usa-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.no-barriers {
    color: #555;
    font-weight: 400;
}

.final-promise {
    font-size: 1.5rem;
    margin-top: 25px;
    color: var(--navy);
}

.final-promise strong {
    color: #009739; 
    border-bottom: 2px solid #009739;
}

.mobile-break {
    display: none;
}

@media (max-width: 768px) {

    .mobile-break {
        display: block;
        content: "";
        margin-top: 10px; 
    }

    .tagline {
        font-size: 1.1rem; 
        line-height: 1.4;
        text-align: center;
    }
}
.toast-success {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #009739;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: opacity 0.5s ease;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@media (max-width: 768px) {
    .toast-success {
        left: 20px;
        right: 20px;
        top: 10px;
        font-size: 0.9rem;
    }
}

.secao-precos {
    text-align: center; 
    padding: 20px 0;
}

.launch-countdown-container {
    background: #0A192F;
    color: white;
    padding: 30px;
    border-radius: 12px;
    display: inline-block; 
    margin: 0 auto 50px auto; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    border: 2px solid #F79E1B;
    z-index: 100;
    position: relative;
    min-width: 300px; 
}

.launch-mode .grid-precos-locked {
    position: relative;
    filter: blur(8px) grayscale(100%); 
    pointer-events: none; 
    opacity: 0.4;
    transition: all 1s ease;
    display: flex;
    justify-content: center; 
}

.grid-precos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

/* Tipografia do Contador */
.launch-alert {
    color: #F79E1B;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-align: center;
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-block span {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.time-block small {
    text-transform: uppercase;
    font-size: 0.7rem;
    color: #aeb9cc;
    margin-top: 5px;
}

.launch-sub {
    margin-top: 15px;
    font-size: 0.9rem;
    font-style: italic;
    color: #cbd5e0;
    text-align: center;
}

/* Ajuste Mobile */
@media (max-width: 768px) {
    .launch-countdown-container {
        padding: 20px;
        width: 90%; 
    }
    .time-block span {
        font-size: 1.8rem;
    }
}