/* =========================================
   1. CONFIGURAÇÕES GERAIS E VARIÁVEIS
   ========================================= */
:root {
    --hero-blue: #0055ff;
    --bar-dark: #0f4c63;
    --yellow-high: #ffff00;
    --orange-brand: #ff6600;
    --header-bg: #e2eff9;
    --header-border: #0b3d64;
    --btn-grad-top: #2b55b8;
    --btn-grad-bottom: #1a3b8c;
    --btn-dark-base: #0d1e4a;
    --bg-gray: #f4f7f6;
    --text-dark: #333;
    --highlight-blue: #0759d9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    background: #fafafa;
}

h1,
h2,
h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* =========================================
   2. HEADER (CABEÇALHO)
   ========================================= */
.top-header {
    background-color: var(--header-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 3px solid var(--header-border);
    border-radius: 0 0 15px 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}

.brand-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: #002244;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 1px;
}

.brand-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--orange-brand);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 2px;
}

.icp-header-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icp-logo-img {
    height: 45px;
    width: auto;
    display: block;
}

.icp-header-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.0rem;
    line-height: 1.2;
    color: #002244;
    font-weight: 700;
    text-transform: uppercase;
}

/* =========================================
   3. HERO SECTION (BANNER AZUL)
   ========================================= */
.hero-section {
    max-width: 100%;
    margin: 0;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blue-banner {
    background-color: var(--hero-blue);
    border-radius: 20px 20px 20px 20px;
    height: 380px;
    min-height: 380px;
    padding: 0 5%;
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 1200px;
    overflow: visible;
    margin-top: 100px;
    margin-bottom: 25px;
    box-shadow: 0 20px 50px rgba(0, 50, 150, 0.3);
}

.banner-text {
    width: 50%;
    z-index: 5;
    position: relative;
    color: #fff;
    padding-left: 20px;
}

.banner-text h1 {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 800;
}

.highlight-yellow {
    color: var(--yellow-high);
}

.banner-image {
    position: absolute;
    bottom: 0;
    right: 5%;
    width: 45%;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 0;
}

.banner-image img {
    width: auto;
    max-width: 120%;
    height: 480px;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    position: absolute;
    bottom: 0;
}

.info-bar {
    background-color: var(--bar-dark);
    color: #fff;
    padding: 20px 35px;
    border-radius: 20px;
    text-align: center;
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 20;
    width: 100%;
    max-width: 1200px;
}

.text-yellow {
    color: var(--yellow-high);
    font-weight: 600;
}

/* =========================================
   4. BOTÕES DE AÇÃO (GERAIS)
   ========================================= */
.final-buttons-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: center;
    margin-top: -10px;
    margin-bottom: 60px;
}

.buttons-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-custom {
    display: flex;
    flex-direction: column;
    width: 150px;
    height: 160px;
    text-decoration: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s;
    background: linear-gradient(to bottom, #2b55b8, #1a3b8c);
}

.btn-custom:hover {
    transform: translateY(-5px);
}

.btn-top {
    flex: 1;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    padding-bottom: 7px;
}

.btn-top img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.btn-bottom {
    background-color: #051338;
    width: 100%;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    margin-top: -10px;
    padding: 10px 5px 5px 5px;
}

/* =========================================
   5. SEÇÃO PIRATA & AUDITORIA (V2)
   ========================================= */
.pirate-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
}

/* Banner Azul (Alerta) */
.pirate-banner {
    display: flex;
    align-items: center;
    background-color: var(--highlight-blue);
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    gap: 30px;
}

.pirate-seal {
    width: 220px;
    flex-shrink: 0;
}

.pirate-seal img {
    width: 100%;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 255, 0, 0.8));
}

.alert-title {
    margin-bottom: 15px;
    font-size: 2.5rem;
    color: var(--yellow-high);
    font-weight: 600;
    line-height: 1.1;
    display: flex;
    align-items: center;
}

.alert-icon-font {
    color: #ff0000;
    /* Vermelho puro para alerta máximo */
    margin-right: 15px;
    /* Espaço do texto */
    font-size: 1.3em;
    /* Um pouco maior que o texto */

    /* Truque para deixar o ícone mais "gordo" e pesado (Bold) */
    -webkit-text-stroke: 2px #ff0000;

    /* Sombra escura para dar contraste no fundo azul */
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.5));
}

/* Barra Amarela (Auditoria) */
.audit-bar-wrapper {
    /* background: #ffffff; */
    background: var(--highlight-blue);
    /* border: 3px solid #ffcc00; */

    border-radius: 30px;
    padding: 30px 250px 30px 40px;
    position: relative;
    margin-bottom: 25px;

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);

    /* border: 4px solid #fff; */
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Centraliza o texto no espaço que sobrou */
}

.audit-text {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.audit-text span {
    /* display: block; */
    text-align: center;
    flex: 1;
    /* Ou center, se preferir */
}

.icon-green-check {
    color: #008000;
    font-size: 1.3em;
    -webkit-text-stroke: 2px #008000;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
    flex-shrink: 0;
}

/* Selo Flutuante (Direita) */
.audit-seal-img {
    position: absolute;

    /* Fica dentro da área de 250px que reservamos */
    right: 20px;

    top: 50%;
    transform: translateY(-50%);

    /* Tamanho mantido para igualar o de cima */
    height: 220px;
    width: auto;

    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
    z-index: 10;
}

/* Botão Amarelo Grande */
.audit-btn-wrapper {
    width: 50%;
    max-width: 100%;
    margin: 0 auto;
}

.btn-yellow-alert {
    width: 100%;
    background: #ffcc00;
    color: #002244;
    /* Cor azul escuro */
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 22px;
    border-radius: 50px;
    border: 4px solid #fff;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.btn-yellow-alert:hover {
    transform: scale(1.01);
    background: #ffe066;
}

/* =========================================
   6. SEGURANÇA COMPACTA (Trust)
   ========================================= */
.compact-security-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
    margin-bottom: 50px;
}

.highlight-header-box {
    background-color: var(--highlight-blue);
    border-radius: 30px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.unified-title {
    text-align: center;
    color: #fff;
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cards-row {
    display: flex;
    gap: 30px;
}

.white-card {
    background: #fff;
    border-radius: 30px;
    padding: 20px;
    flex: 1;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.white-card dou-card-style .dou-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: 20px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.white-card.no-padding {
    padding: 0 !important;
}

.logo-stack-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.img-acnacional {
    width: 300px;
    max-width: 90%;
    height: auto;
    object-fit: contain;
}

.img-lidersis {
    width: 250px;
    max-width: 95%;
    height: auto;
    object-fit: contain;
}

.img-full-fit {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.dark-content-box {
    background-color: var(--bar-dark);
    border-radius: 30px;
    padding: 40px 50px;
    position: relative;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-intro-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    max-width: 100%;
    text-align: center;
    line-height: 1.6;
}

.checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 40px;
    max-width: 78%;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    line-height: 1.5;
    text-align: left;
}

.check-item i {
    color: var(--yellow-high);
    margin-top: 4px;
    font-size: 1.1rem;
}

.floating-badge {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%) rotate(-5deg);
    background-color: #fff;
    color: #002244;
    border: 4px solid var(--highlight-blue);
    border-radius: 50%;
    width: 200px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    z-index: 5;
}

.cta-strip {
    background-color: var(--bar-dark);
    border-radius: 50px;
    padding: 20px;
    text-align: center;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

/* Botão Faixa (Que substitui o cta-strip estático) */
.cta-strip-btn {
    background-color: var(--bar-dark);
    width: 100%;
    border: none;
    border-radius: 50px;
    padding: 20px;
    text-align: center;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

.cta-strip-btn:hover {
    transform: translateY(-3px);
    background-color: #0b3d50;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* =========================================
   7. FLUXO DE COMPRA
   ========================================= */
.flow-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 15px;
    text-align: center;
}

.flow-title {
    color: #333;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.flow-image-wrapper {
    margin-bottom: -20px;
    position: relative;
    z-index: 1;
}

.flow-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Container Interativo (Botão Pílula) */
.flow-interactive-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 20px;
}

.flow-action-container {
    padding: 10px 20px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    transition: all 0.3s ease;
}

.btn-pill-overlay {
    background-color: #0056b3;
    border: 4px solid #ffffff !important;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    font-size: 1.1rem;
    padding: 15px 0;
}

.btn-pill-overlay:hover {
    background-color: #004494;
    transform: translateY(-2px);
}

/* =========================================
   8. PRODUTOS (CARDS)
   ========================================= */
.products-section {
    padding: 60px 20px;
    background: #f0f4ff;
    /* #f0f4ff */
    text-align: center;
    border-radius: 20px;
    max-width: 1200px;
    margin: 30px auto 0;
}

.grid-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 30px auto 0;
}

.card {
    background: #f4f7f6;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #f4f7f6;
    transition: 0.3s;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--hero-blue);
}

.card-icon {
    font-size: 3.5rem;
    color: #0056b3;
    margin-bottom: 20px;
}

.card h3 {
    color: #003366;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.features-list {
    width: 100%;
    margin-bottom: 25px;
    text-align: left;
    padding-left: 10px;
}

.feature-item {
    color: #25d366;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Botão de Compra e Opções (Padrão para todo site) */
.btn-card-buy {
    background: #0056b3;
    color: #fff;
    padding: 15px 0;
    width: 100%;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 86, 179, 0.3);
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-card-buy:hover {
    background: #004494;
    transform: scale(1.02);
}

.card-options {
    position: relative;
    z-index: 10;

    /* ANIMAÇÃO */
    animation: fadeIn 0.4s ease;

    /* --- O SEGREDO ESTÁ AQUI --- */
    width: 100%;
    /* Ocupa 100% em telas pequenas (celular) */
    max-width: 450px;
    /* TRAVA A LARGURA: Não deixa passar de 450px no PC */
    margin: 15px auto 0;
    /* "auto" nas laterais CENTRALIZA o bloco */

    /* Organização interna */
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* Espaço entre os botões */
}

.btn-option-small {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 60px;
    padding: 12px;
    margin-bottom: 8px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-option-small i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.opt-site {
    background-color: #ffdb4d;
    /* Amarelo */
    color: #002244;
    /* Azul Escuro */
    border: 2px solid #ffffff;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(255, 204, 0, 0.3);
}

.opt-site:hover {
    background-color: #ffe066;
    /* Amarelo claro no hover */
    color: #002244;
    transform: translateY(-2px);
}

/* --- 2. AJUSTE DA CAIXA DE OPÇÕES (EMPURRAR O CONTEÚDO) --- */
.card-options {
    /* MUDANÇA IMPORTANTE: De 'absolute' para 'relative' */
    position: relative;
    width: 100%;
    z-index: 10;

    /* Removemos top/left porque agora ele obedece o fluxo */
    margin-top: 0;

    /* Animação suave aparecendo */
    animation: fadeIn 0.4s ease;
}

/* Nova animação mais simples para o overlay */
@keyframes overlayFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-option-small {
    width: 100%;
    /* Estica o botão até a borda */
    box-sizing: border-box;
    /* Garante que o padding não estoure a largura */
}

.opt-whats {
    background-color: #25d366;
    color: #fff;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.opt-tel {
    background-color: var(--btn-dark-base);
    color: #fff;
    box-shadow: 0 4px 10px rgba(13, 30, 74, 0.3);
}

.btn-option-small:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Correção de ícone invertido globalmente */
.opt-tel i,
.btn-custom i.fa-phone-alt,
.btn-custom i.fa-phone {
    display: inline-block;
    transform: scaleX(-1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   9. DEPOIMENTOS (INTERACTIVE REVIEWS)
   ========================================= */
.interactive-reviews-section {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 60px auto;
    background-color: #f0f4ff;
    border-radius: 40px;
    padding: 60px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: center;
}

.reviews-title {
    color: #002244;
    text-transform: uppercase;
    margin-bottom: 30px;
    position: relative;
    z-index: 10;
}

.reviews-content-box {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.review-stars {
    color: #ffcc00;
    font-size: 1.5rem;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.review-quote {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
}

.author-name {
    color: var(--hero-blue);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.review-btn-container {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

/* Fotos nos cantos (Posicionamento) */
.corner-avatar {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
    opacity: 0.9;
}

.top-left {
    top: 50px;
    left: 8%;
}

.top-right {
    top: 50px;
    right: 8%;
}

.bottom-left {
    bottom: 50px;
    left: 8%;
}

.bottom-right {
    bottom: 50px;
    right: 8%;
}

/* =========================================
   10. FAQ, TRUST & FOOTER
   ========================================= */
.faq-section {
    max-width: 1200px;
    margin: 60px auto;
    background-color: #f0f4ff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.accordion-item {
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: none;
    border: none;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    color: #333;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: 0.3s;
    color: #555;
    opacity: 0.9;
}

.active+.accordion-content {
    max-height: 200px;
    padding-bottom: 20px;
}

.trust-section {
    padding: 50px 20px;
    background: #f0f4ff;
    text-align: center;
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.trust-item {
    text-align: center;
    color: #555;
    font-weight: 600;
}

.trust-item i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
}

footer {
    background: #051338;
    color: #fff;
    padding: 40px;
    text-align: center;
    font-size: 0.9rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-decoration: none;
    animation: pulse-green 2s infinite;
    font-size: 38px;
    color: #fff;
}

.whatsapp-msg {
    position: absolute;
    bottom: 75px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: normal;
    width: 120px;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.whatsapp-msg::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff;
}

/* --- REGRA DE SEGURANÇA PARA OS CONTAINERS DOS BOTÕES --- */
/* Isso garante que as opções saibam onde devem aparecer */
.audit-btn-wrapper,
.cta-strip-wrapper,
.review-btn-container,
/* Adicione aqui qualquer outro container que segure um botão e suas opções */
.card>div {
    position: relative;
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    /* Espaço entre os quadrados */
    margin-bottom: 30px;
}

/* Garante que todos os cards tenham a mesma altura */
.security-grid .white-card {
    height: 100%;
    min-height: 250px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* =========================================
   11. MEDIA QUERIES (RESPONSIVIDADE)
   ========================================= */

/* --- NOTEBOOK / TABLET GRANDE (ATÉ 1100px) --- */
@media (max-width: 1100px) {
    .corner-avatar {
        width: 60px;
        height: 60px;
    }

    .top-left,
    .bottom-left {
        left: 20px;
    }

    .top-right,
    .bottom-right {
        right: 20px;
    }
}

/* --- TABLET (ATÉ 900px) --- */
@media (max-width: 900px) {
    .cards-row {
        flex-direction: column;
    }

    .white-card {
        height: auto;
        padding: 30px;
    }

    .img-lidersis {
        max-height: 70px;
        width: auto;
    }

    .img-acnacional {
        max-height: 50px;
        width: auto;
    }

    .img-full-fit {
        max-height: 180px;
        object-fit: contain;
    }

    .dark-content-box {
        display: flex;
        flex-direction: column-reverse;
        padding: 30px 25px;
        text-align: center;
    }

    .floating-badge {
        position: static;
        transform: none;
        margin: 0 auto 30px auto;
    }

    .dark-intro-text,
    .checklist-grid {
        max-width: 100%;
    }

    .checklist-grid {
        text-align: left;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .unified-title {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .cta-strip,
    .cta-strip-btn {
        font-size: 1.1rem;
        padding: 20px;
        white-space: normal;
    }

    /* Na transição para mobile, os avatares ficam transparentes ou somem */
    .floating-avatar {
        opacity: 0.3;
        width: 50px;
        height: 50px;
    }

    .pos-3,
    .pos-4 {
        bottom: 10px;
    }

    .security-grid {
        /* CELULAR: Muda para apenas 1 coluna (um embaixo do outro) */
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Ajuste opcional para altura no celular */
    .security-grid .white-card {
        min-height: auto;
        height: auto;
        padding: 30px;
    }
}

/* --- CELULAR (ATÉ 850px / 768px) --- */
@media (max-width: 850px) {
    .corner-avatar {
        display: none;
    }

    .interactive-reviews-section {
        padding: 40px 20px;
        width: 95%;
    }
}

@media (max-width: 769px) {

    /* Fluxo: Botão vai para cima da imagem apenas no Desktop */
    .flow-action-container {
        margin-top: -35px;
    }
}

@media (max-width: 768px) {

    /* Header */
    .top-header {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        padding: 15px;
    }

    /* Hero */
    .blue-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px 0 20px;
        height: auto;
        min-height: auto;
        border-radius: 30px;
        margin-top: 20px;
        align-items: center;
    }

    .banner-text {
        width: 100%;
        padding-left: 0;
        margin-bottom: 20px;
    }

    .banner-text h1 {
        font-size: 2rem;
    }

    .banner-image {
        position: relative;
        width: 85%;
        height: auto;
        right: auto;
        bottom: 0;
        display: block;
    }

    .banner-image img {
        width: 100%;
        height: auto;
        position: static;
    }

    .info-bar {
        width: 100%;
        margin-bottom: 10px;
        border-radius: 15px;
        font-size: 0.95rem;
    }

    .final-buttons-section {
        margin-top: 40px;
    }

    /* Fluxo no Mobile (Reseta posição) */
    .flow-action-container {
        margin-top: 20px;
    }

    .btn-pill-overlay {
        border: none !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .flow-img {
        padding: 0 10px;
    }

    /* SEÇÃO PIRATA (Banner Azul Mobile) */
    .pirate-banner {
        flex-direction: column;
        text-align: center !important;
        padding: 40px 20px;
    }

    .pirate-seal {
        width: 240px;
        max-width: 80%;
        margin-bottom: 20px;
    }

    .alert-title {
        font-size: 1.8rem;
    }

    .alert-title {
        font-size: 1.8rem;
        justify-content: center;
    }

    /* AUDITORIA (Barra Amarela Mobile) */
    .audit-bar-wrapper {
        padding: 90px 20px 30px 20px !important;
        margin-top: 100px !important;
        flex-direction: column;
        height: auto;
        min-height: auto;
    }

    .audit-text {
        width: 100% !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 10px;
        text-align: left !important;
    }

    .audit-text span {
        text-align: left !important;
        font-size: 1.3rem;
        font-weight: 800;
    }

    .icon-green-check {
        font-size: 1.4rem !important;
        margin-top: 2px;
    }

    .audit-seal-img {
        height: 200px !important;
        right: 50% !important;
        top: 0 !important;
        transform: translate(50%, -50%) !important;
    }

    .btn-yellow-alert {
        font-size: 1.2rem;
        padding: 15px;
    }

    /* Outros */
    .whatsapp-msg {
        display: none;
    }

    .interactive-reviews-section {
        padding: 50px 20px;
    }

    .audit-btn-wrapper {
        width: 80%;
        max-width: 100%;
        margin: 0 auto;
    }
}