/* --- CONFIGURAÇÕES GERAIS --- */
: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;
    /* Fundo Cinza Claro */
    --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: #026ded;
    /*background: var(--bg-gray);
    Alterado para cinza claro */
}

h1,
h2,
h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* HEADER */
.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;
}

/* HERO SECTION */
.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;
}

/* BOTÕES DE AÇÃO */
.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;
}

/* SEÇÕES GERAIS */
.pirate-section,
.compact-security-section,
.cta-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
}

/* PIRATA */
.pirate-banner {
    border-radius: 40px;
    padding: 40px;
    display: flex;
    align-items: center;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background-color: var(--highlight-blue);
    gap: 40px;
}

.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: 2rem;
    color: var(--yellow-high);
    font-weight: 600;
}

/* SEGURANÇA COMPACTA */
.compact-security-section {
    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.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: cover;
    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;
}

/* FLUXO */
.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;
}

/* Cor ajustada para fundo claro */
.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);
}

/* DEPOIMENTOS */
.interactive-reviews-section {
    width: 100%;
    background-color: #f0f4ff;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.reviews-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.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;
    max-width: 600px;
    margin: 0 auto 30px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.main-author-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    display: block;
}

.author-name {
    color: var(--hero-blue);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.btn-green-action {
    background-color: #0f4c63;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 20px 50px rgba(0, 50, 150, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-green-action:hover {
    transform: translateY(-3px);
    background-color: #0f4c63;
    box-shadow: 0 20px 50px rgba(0, 50, 150, 0.3);
}

.floating-avatar {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    z-index: 1;
}

.pos-1 {
    top: 0;
    left: 10%;
}

.pos-2 {
    top: 20px;
    right: 10%;
}

.pos-3 {
    bottom: 100px;
    left: 5%;
}

.pos-4 {
    bottom: 120px;
    right: 5%;
}

.btn-flow-trigger {
    background-color: #0f4c63;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.btn-flow-trigger:hover {
    transform: scale(1.05);
    background-color: #002244;
}

.hidden-options-wrapper {
    animation: slideDownFade 0.5s ease-out forwards;
    margin-top: 30px;
}

@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* PRODUTOS */
.products-section {
    padding: 40px 20px;
    background: #fff;
    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: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    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;
}

.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);
}

/* --- OPÇÕES DE COMPRA DENTRO DO CARD (NOVO) --- */
.card-options {
    width: 100%;
    animation: fadeIn 0.4s ease;
}

.btn-option-small {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    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: var(--hero-blue);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 85, 255, 0.3);
}

.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;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ & TRUST & FOOTER */
.faq-section {
    max-width: 1200px;
    margin: 60px auto;

    /* ADICIONE/ALTERE ESSAS LINHAS: */
    background-color: #ffffff;
    /* Cor de fundo branca */
    padding: 40px;
    /* Espaço interno para o texto não colar na borda */
    border-radius: 20px;
    /* Bordas arredondadas */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    /* Sombra suave para destaque */
}

.accordion-item {
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
}

/* --- NOVO ESTILO: BARRA DE DESTAQUE DOURADA --- */
.gold-trust-bar {
    background: linear-gradient(135deg, #ffcc00, #ffdb4d);
    /* Gradiente Amarelo/Dourado vibrante */
    color: #002244;
    /* Texto Azul Escuro (contraste máximo) */
    padding: 25px 40px;
    border-radius: 60px;
    /* Formato de pílula arredondado */
    text-align: center;
    font-size: 1.3rem;
    font-weight: 800;
    /* Texto bem grosso */
    margin: 20px auto;
    /* Margem vertical e centralizado horizontalmente */
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.5);
    /* Sombra amarela brilhante */
    border: 4px solid #ffffff;
    /* Borda branca grossa para destacar do fundo azul */
    text-transform: uppercase;
    max-width: 950px;
    /* Largura máxima para não esticar demais */

    /* Alinhamento do ícone e texto */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

/* Ícone de Medalha */
.gold-trust-bar i {
    font-size: 2.2rem;
    color: #002244;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Destaque do número "160 mil" */
.gold-trust-bar span.highlight-number {
    color: #000000;
    /* Preto puro para o número */
    font-size: 1.6rem;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 5px;
    padding: 0 5px;
}

/* Efeito de brilho passando (opcional, chama muito a atenção) */
.gold-trust-bar::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    animation: shineEffect 4s infinite linear;
    /* Brilho passa a cada 4 segundos */
}

@keyframes shineEffect {
    0% {
        left: -100%;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

/* --- Ajuste para Celular --- */
@media (max-width: 768px) {
    .gold-trust-bar {
        flex-direction: column;
        /* Ícone em cima do texto */
        padding: 25px 20px;
        font-size: 1.1rem;
        gap: 15px;
        border-radius: 30px;
        margin: 30px auto;
    }

    .gold-trust-bar i {
        font-size: 2rem;
    }

    .gold-trust-bar span.highlight-number {
        font-size: 1.4rem;
    }
}

/* Borda ajustada para fundo claro */
.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;
    /* Texto escuro para fundo claro */
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: 0.3s;
    color: #555;
    opacity: 0.9;
}

/* Texto cinza escuro */
.active+.accordion-content {
    max-height: 200px;
    padding-bottom: 20px;
}

.trust-section {
    padding: 50px 20px;
    background: #fff;
    text-align: center;
}

/* Fundo branco puro */
.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 */
.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;
}

/* MOBILE */
@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 {
        font-size: 1.1rem;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .top-header {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        padding: 15px;
    }

    .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;
    }

    .pirate-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .pirate-seal {
        width: 240px;
        max-width: 80%;
        margin-bottom: 20px;
    }

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

    .whatsapp-msg {
        display: none;
    }

    .floating-avatar {
        display: none;
    }

    .interactive-reviews-section {
        padding: 50px 20px;
    }

    /* Correção do ícone de telefone invertido */
    .opt-tel i,
    .btn-custom i.fa-phone-alt,
    /* Caso use no botão grande */
    .btn-custom i.fa-phone {
        display: inline-block;
        /* OBRIGATÓRIO para o transform funcionar */
        transform: scaleX(-1);
    }
}