/*** uncss> filename: https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&display=swap ***/
@font-face {
    font-family: 'Baloo 2';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/baloo2/v23/wXK0E3kTposypRydzVT08TS3JnAmtdgazapv.ttf) format('truetype');
}

@font-face {
    font-family: 'Baloo 2';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/baloo2/v23/wXK0E3kTposypRydzVT08TS3JnAmtdgozapv.ttf) format('truetype');
}

@font-face {
    font-family: 'Baloo 2';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/baloo2/v23/wXK0E3kTposypRydzVT08TS3JnAmtdjEyqpv.ttf) format('truetype');
}

@font-face {
    font-family: 'Baloo 2';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/baloo2/v23/wXK0E3kTposypRydzVT08TS3JnAmtdj9yqpv.ttf) format('truetype');
}

@font-face {
    font-family: 'Baloo 2';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/baloo2/v23/wXK0E3kTposypRydzVT08TS3JnAmtdiayqpv.ttf) format('truetype');
}

/*** uncss> filename: style.css ***/
/* ==========================================================================
   DESIGN SYSTEM & VARIABLES (MOBILE-FIRST)
   ========================================================================== */
:root {
    /* Verde de alta convers├úo (CTA) */
    --color-accent-orange-hover: #245e18;
    --color-success: #2d6421;
    /* Verde para ticks e checkmarks */
    --color-danger: #b91c1c;
    /* Vermelho para alertas */
    --color-warning: #c47c28;
    /* ├émbar quente de aten├º├úo */

    --color-bg-primary: #fafafa;
    --color-bg-card: #ffffff;
    --color-brown-dark: #363636;
    --color-brown-medium: #55555f;
    --color-beige-warm: #d4c9a8;
    --color-accent-gold: #307C20;
    --color-accent-orange: #307C20;

    /* Typography */
    --font-titles: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows & Transitions */
    --shadow-sm: 0 2px 5px rgba(26, 61, 18, 0.05);
    --shadow-md: 0 8px 16px rgba(26, 61, 18, 0.08);
    --shadow-lg: 0 16px 32px rgba(26, 61, 18, 0.15);
    --shadow-glow: 0 0 25px rgba(48, 124, 32, 0.35);
    --transition-smooth: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);

    /* Borders */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
}

/* ==========================================================================
   RESET & MOBILE-FIRST LAYOUT WRAPPER
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 15px;
    /* Tamanho de fonte levemente menor para mobile */
}

/* O corpo atua como a moldura do site no desktop */
body {
    font-family: var(--font-body);
    background-color: #0d1f09;
    /* Fundo claro para tela cheia */
    background-color: var(--color-bg-primary);
    color: var(--color-brown-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;

    /* Prote├º├Áes contra c├│pia de texto */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

p {
    font-size: 16px;
}

/* Escudo contra print screen (impress├â┬úo f├â┬¡sica e PDF) */
#print-shield-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000 !important;
    z-index: 99999999;
}

/* Quando detecta tentativa de impress├â┬úo (Ctrl+P / Salvar PDF) */
@media print {
    #print-shield-overlay {
        display: block !important;
    }

    body * {
        visibility: hidden !important;
    }
}


/* CONTAINER FULL WIDTH (ANTES ERA MOBILE SIMULATED) */
.app-wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* BANDA DE ESCASSEZ NO TOPO (EST├â┬üTICA) */
.scarcity-top-bar {
    width: 100%;
    background-color: #e53935;
    color: #faf7f0;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 6px;
    font-size: clamp(12px, 3.5vw, 15px);
    font-weight: 600;
    border-bottom: 3px solid #b11d19;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    font-family: var(--font-titles);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.scarcity-timer {
    display: inline-flex;
    align-items: center;
    gap: 2.4px;
    color: #ffd688;
    font-weight: 900;
    font-size: clamp(13px, 4vw, 16px);
}

/* Elementos tipogr├â┬íficos */
h1,
h2,
h3 {
    font-family: var(--font-titles);
    color: var(--color-brown-dark);
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

/* Container de se├º├úo (Max width 768px para desktop, 100% para mobile) */
.container {
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
    padding: 0 16px;
}

.text-center {
    text-align: center;
}

/* Cabe├â┬ºalhos de Se├â┬º├â┬úo compactos para mobile */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-titles);
    font-weight: 700;
    font-size: 12.8px;
    letter-spacing: 2px;
    color: var(--color-accent-gold);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-title {
    font-size: 29.6px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--color-brown-medium);
}

/* Base ÔÇö mant├®m apenas estrutura, o .btn-cta sobrescreve tudo */
.btn {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-titles);
    font-weight: 700;
    width: 100%;
    position: relative;
    overflow: visible;
    box-sizing: border-box;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.5px;
}

/* ÔöÇÔöÇÔöÇ Pill CTA Button (convertido de Tailwind) ÔöÇÔöÇÔöÇ */
.btn-cta {
    justify-content: center;
    height: 68px;
    padding-left: 18.4px;
    padding-right: 18.4px;
    border-radius: 16px;
    border-top: 2px solid #57E957;
    border-bottom: 2px solid #0A760A;
    border-left: none;
    border-right: none;
    background-color: #1BAF1B;
    color: #FEFEFF;
    font-size: 16px;
    box-shadow: 0 27.2px 18.133px -27.2px rgba(0, 11, 10, 0.58);
    transition: background-color 300ms ease-in-out, border-color 300ms ease-in-out;
}

.btn-cta:active {
    transform: scale(0.985);
}

/* C├¡rculo com ├¡cone de seta ÔÇö vis├¡vel s├│ no desktop */

/* Ambas as setas sobrepostas ÔÇö trocam por opacity */

/* Seta padr├úo: diagonal up-right */

/* Seta hover: come├ºa rotacionada e invis├¡vel */

/* No hover: troca as opacidades */

/* Desktop: layout centrado */
@media (min-width: 1024px) {
    .btn-cta {
        max-width: 456px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 32px;
        padding-right: 32px;
        justify-content: center;
        font-size: 18px;
    }
}

/* ==========================================================================
   HEADER
   ========================================================================== */

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    border-bottom: 1px solid rgba(84, 55, 37, 0.05);
    min-height: 95vh;
    padding: 40px 0 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(84, 55, 37, 0.07);
    border: 1px solid rgba(84, 55, 37, 0.1);
    color: var(--color-brown-medium);
    padding: 5.6px 12.8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 11.2px;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 700;
    color: var(--color-brown-dark);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--color-brown-medium);
    margin-bottom: 28px;
    line-height: 1.5;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 4px;
}

/* Review Stars Widget */
.hero-review {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .hero-review {
        gap: 24px;
        flex-direction: row;
    }
}

.review-stars-group {
    display: flex;
    align-items: center;
    gap: 4px;
}

.review-stars {
    display: flex;
    align-items: center;
    gap: 1px;
}

.review-score {
    font-size: 16px;
    line-height: 1.375;
    color: rgba(54, 54, 54, 0.55);
    font-weight: 600;
}

.hero-visual {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.mockup-container {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.mockup-glow {
    display: none;
}

/* ==========================================================================
   PARA QUEM E ESTE MATERIAL
   ========================================================================== */
.target-audience {
    padding: 72px 0;
    background-color: var(--color-bg-card);
}

.audience-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.audience-card {
    background-color: var(--color-bg-primary);
    padding: 32px 24px;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(84, 55, 37, 0.04);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: var(--transition-smooth);
}

.audience-card:hover {
    border-color: rgba(213, 174, 134, 0.4);
    background-color: #ffffff;
    box-shadow: var(--shadow-md);
}

.card-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--color-success);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.card-icon {
    width: 28px;
    height: 28px;
}

.card-icon path,
.card-icon circle,
.card-icon rect,
.card-icon polyline,
.card-icon line {
    stroke: #ffffff !important;
}

.audience-card h3 {
    font-size: 18.4px;
    font-weight: 700;
}

.audience-card p {
    color: var(--color-brown-medium);
    line-height: 1.5;
}

/* ==========================================================================
   O QUE VOC├â┼á VAI RECEBER
   ========================================================================== */

/* ==========================================================================
   CARROSSEL MANUAL COM SETAS (LOOP INFINITO)
   ========================================================================== */
.demo-images-section {
    padding: 72px 0;
    background-color: var(--color-bg-primary);
    overflow: hidden;
}

/* Wrapper geral: posiciona setas e trilho */
.demo-carousel-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0;
}

/* ├ürea vis├¡vel do carrossel (overflow hidden) */
.demo-carousel-track-container {
    overflow: hidden;
    flex: 1;
    padding: 8px 0;
}

/* Trilho interno com todos os slides em linha */
.demo-carousel-track {
    display: flex;
    gap: 16px;
    will-change: transform;
    user-select: none;
}

/* Bot├Áes de navega├º├úo */
.demo-nav-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1.5px solid rgba(48, 124, 32, 0.25);
    color: var(--color-accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
    transition: var(--transition-smooth);
    z-index: 2;
    margin: 0 5.6px;
}

.demo-nav-btn svg {
    width: 19.2px;
    height: 19.2px;
}

.demo-nav-btn:hover {
    background-color: var(--color-accent-gold);
    color: #ffffff;
    border-color: var(--color-accent-gold);
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(48, 124, 32, 0.3);
}

.demo-nav-btn:active {
    transform: scale(0.96);
}

/* Slide individual */
.demo-slide {
    width: 280px;
    flex-shrink: 0;
    aspect-ratio: 1 / 1.414;
    height: auto;
    background-color: var(--color-bg-primary);
    border: 1.5px solid rgba(84, 55, 37, 0.1);
    border-radius: var(--border-radius-md);
    padding: 0;
    cursor: pointer;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.demo-slide:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: var(--color-accent-gold);
    box-shadow: var(--shadow-lg);
}

.carousel-hint {
    font-size: 12.8px;
    color: var(--color-brown-medium);
}

/* CTA inline abaixo das demos */
.demo-inline-cta {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-bottom: 8px;
}

.demo-cta-text {
    font-size: 15.2px;
    color: var(--color-brown-medium);
    text-align: center;
    font-weight: 500;
}

.demo-cta-btn {
    max-width: 340px !important;
}

/* ÔöÇÔöÇÔöÇ ├Ültima Chance Badge ÔöÇÔöÇÔöÇ */

/* ==========================================================================
   B├âÔÇØNUS EXCLUSIVOS
   ========================================================================== */

/* GRID E CARDS DE B├âÔÇØNUS (BEGE DENTRO) */

/* PLACEHOLDER DE IMAGEM DENTRO DO CARD */

/* CARD DE RESUMO DOS B├âÔÇØNUS */

/* ESTILOS DO TIMER E DESTAQUES DE PLANOS */


.countdown-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 24px;
    width: 100%;
}

.countdown-label {
    font-family: var(--font-titles);
    font-size: 12.8px;
    font-weight: 700;
    color: var(--color-brown-medium);
    letter-spacing: 1px;
    margin-bottom: 13.6px;
    text-transform: uppercase;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10.4px;
}

.timer-box {
    background-color: var(--color-brown-dark);
    width: 76.8px;
    height: 76.8px;
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(41, 24, 13, 0.15);
}

.timer-num {
    font-family: var(--font-titles);
    font-size: 29.6px;
    font-weight: 800;
    color: #eab308;
    /* Amarelo ouro brilhante */
    line-height: 1.1;
}

.timer-label {
    font-size: 8.8px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
    margin-top: 2.4px;
    text-transform: uppercase;
}

.timer-colon {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-brown-dark);
    margin: 0 1.6px;
    animation: blink-colon 1s infinite;
}

@keyframes blink-colon {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* ==========================================================================
   PLANOS DE PRE├âÔÇíO (ACORDO DE CORES)
   ========================================================================== */
.pricing-section {
    padding: 72px 0;
    background-color: #f0f9ff;
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}

.price-card {
    background-color: var(--color-bg-primary);
    border: 1px solid rgba(84, 55, 37, 0.06);
    border-radius: var(--border-radius-md);
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Overrides para diminuir o destaque do Plano B├â┬ísico */
#plano-basico {
    padding: 28px 18.4px;
    background-color: rgba(84, 55, 37, 0.02);
    /* Fundo sutilmente mais discreto */
    border: 1px solid rgba(84, 55, 37, 0.08);
}

#plano-basico #btn-comprar-basico {
    font-size: 13.6px;
    padding: 12px;
    border: 1px solid rgba(84, 55, 37, 0.35);
    color: rgba(84, 55, 37, 0.8);
}

#plano-basico #btn-comprar-basico:hover {
    background-color: var(--color-brown-medium);
    color: #ffffff;
    border-color: var(--color-brown-medium);
}

/* Styled bonus container in the Complete Plan card */

/* ==========================================================================


/* ==========================================================================
   FAQ ACCORDION (MOBILE OPTIMIZED)
   ========================================================================== */
.faq-section {
    padding: 72px 0;
    background-color: #f0f9ff;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 13.6px;
}

.faq-item {
    background-color: var(--color-bg-card);
    border: 1px solid rgba(84, 55, 37, 0.06);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 18.4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-titles);
    font-weight: 600;
    font-size: 15.2px;
    color: var(--color-brown-dark);
}

.faq-toggle-icon {
    width: 20px;
    height: 20px;
    color: var(--color-accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
}

.faq-toggle-icon svg {
    width: 17.6px;
    height: 17.6px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s cubic-bezier(0, 1, 0, 1);
}

.faq-answer-content {
    padding: 0 18.4px 18.4px 18.4px;
    color: var(--color-brown-medium);
    line-height: 1.5;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: var(--color-bg-primary);
    color: rgba(75, 61, 51, 0.8);
    padding: 48px 0;
    font-size: 12.8px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.copyright {
    line-height: 1.6;
    font-size: 12px;
}

/* ==========================================================================
   MODAIS (UPSELL POPUP & LIGHTBOX) - CENTRALIZADOS
   ========================================================================== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 12, 8, 0.75);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    padding: 16px;
}

.close-lightbox {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
    background-color: var(--color-bg-primary);
    color: var(--color-brown-medium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.close-lightbox:hover {
    background-color: var(--color-danger);
    color: #ffffff;
}

.close-lightbox svg {
    width: 13.6px;
    height: 13.6px;
}

/* Lightbox Content */
.lightbox-container {
    width: 100%;
    max-width: 420px;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.25s ease;
}

/* ==========================================================================
   PLANO ├ÜNICO ÔÇö LAYOUT CENTRALIZADO (GALINHAS)
   ========================================================================== */

/* ==========================================================================
   ├éNCORA DE PRE├çO RISCADO
   ========================================================================== */

/* ==========================================================================
   SOCIAL PROOF TOAST
   ========================================================================== */

/* --- OFFER CARD REDESIGN --- */
.offer-card-design {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 420px;
    margin: 0 auto;
}

.offer-pill {
    background-color: rgba(45, 100, 33, 0.1);
    color: var(--color-success);
    font-size: 13.6px;
    font-weight: 700;
    padding: 6.4px 16px;
    border-radius: 32px;
    display: flex;
    align-items: center;
    gap: 6.4px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-title {
    font-family: var(--font-titles);
    font-size: 27.2px;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 24px;
}

.offer-price-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
}

.offer-was {
    font-size: 16px;
    color: #777777;
    text-decoration: line-through;
    font-weight: 600;
    margin-bottom: 3.2px;
}

.offer-now-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: #0f172a;
    margin-bottom: 3.2px;
}

.offer-currency {
    font-size: 24px;
    font-weight: 700;
    margin-top: 8px;
    margin-right: 4px;
}

.offer-price {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
}

.offer-highlight {
    color: var(--color-success);
    font-size: 13.6px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.offer-features {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.offer-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15.2px;
    color: #333333;
    line-height: 1.4;
}

.offer-features li svg {
    width: 20px;
    height: 20px;
    color: var(--color-success);
    background: rgba(45, 100, 33, 0.1);
    border-radius: 50%;
    padding: 3.2px;
    flex-shrink: 0;
    margin-top: 1.6px;
}


.offer-footer-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6.4px;
    font-size: 12px;
    color: #777777;
    font-weight: 500;
}

.offer-footer-note svg {
    width: 16px;
    height: 16px;
    color: var(--color-success);
}

.offer-countdown {
    margin-top: 0;
    margin-bottom: 24px;
    background: #f8fafc;
    border-radius: 16px;
    padding: 16px;
    border: 1px dashed rgba(0, 0, 0, 0.1);
}

.offer-countdown .countdown-label {
    color: #0f172a;
    font-size: 12px;
    margin-bottom: 12px;
}

.offer-countdown .timer-box {
    width: 60.8px;
    height: 60.8px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.offer-countdown .timer-num {
    color: var(--color-danger);
    font-size: 24px;
}

.offer-countdown .timer-label {
    color: #64748b;
    font-size: 9.6px;
}

.offer-countdown .timer-colon {
    color: #94a3b8;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

/* ==========================================================================
   GARANTIA
   ========================================================================== */
.guarantee-section {
    padding: 48px 0;
    background-color: #ffffff;
}

.guarantee-box {
    background-color: var(--color-bg-card);
    border: 2px dashed rgba(2, 132, 199, 0.4);
    border-radius: var(--border-radius-md);
    padding: 40px 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.guarantee-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background-color: var(--sq-primary-glow);
    color: var(--sq-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-icon svg {
    width: 32px;
    height: 32px;
}

.guarantee-title {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--color-brown-dark);
}

.guarantee-text {
    color: var(--color-brown-medium);
    font-size: 15.2px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.guarantee-highlight {
    font-weight: 700;
    color: var(--sq-primary);
    font-size: 16.8px;
}

/* ==========================================================================
   MARQUEE (CARROSSEL INFINITO DE DEPOIMENTOS)
   ========================================================================== */
.marquee-section {
    padding: 56px 0;
    overflow: hidden;
    background-color: var(--color-bg-primary);
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
}

.marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee-scroll 60s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-right: 24px;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   DESKTOP / TABLET (Min-width: 768px)
   ========================================================================== */
@media (min-width: 768px) {
    .hero-title {
        font-size: 50px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .btn {
        max-width: 448px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ==========================================================================
   PAPER SQUISHY CUSTOM STYLES
   ========================================================================== */

.squishy-theme {
    font-family: 'Baloo 2', cursive !important;
}

.squishy-theme h1,
.squishy-theme h2,
.squishy-theme h3 {
    font-family: 'Baloo 2', cursive !important;
}

.squishy-btn {
    background-color: #FF5A82 !important;
    border-radius: 50px !important;
    padding: 15px 30px !important;
    font-size: 19.2px !important;
    font-weight: 700 !important;
    color: white !important;
    text-decoration: none !important;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(255, 90, 130, 0.4) !important;
    transition: all 0.3s ease !important;
    font-family: 'Baloo 2', cursive !important;
    border: none !important;
}

.squishy-btn:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 8px 20px rgba(255, 90, 130, 0.5) !important;
    background-color: #FF406D !important;
}

.squishy-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.squishy-card:hover {
    transform: translateY(-5px);
    border-color: #FFD166;
}


/* ==========================================================================
   PAPER SQUISHY ´┐¢ ESTILOS COMPLETOS
   ========================================================================== */

/* ---- Fonte global Baloo 2 ---- */
.squishy-theme,
.squishy-theme h1,
.squishy-theme h2,
.squishy-theme h3,
.squishy-theme p,
.squishy-theme span,
.squishy-theme a,
.squishy-theme button,
.squishy-theme li {
    font-family: 'Baloo 2', cursive !important;
}

/* ---- Top bar squishy ---- */
.squishy-top-bar {
    background: linear-gradient(90deg, #FF5A82, #FF8A00) !important;
    border-bottom: 3px solid #e04060 !important;
}

/* ---- Hero squishy ---- */
.squishy-hero {
    background: linear-gradient(160deg, #ffffff 0%, #f0f9ff 100%);
    padding-bottom: 32px;
}

.squishy-h1 {
    color: #2D2D2D !important;
    font-size: clamp(27.2px, 6vw, 41.6px) !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
}

.squishy-subtitle {
    font-size: 18.4px !important;
    color: #555 !important;
    margin-top: 16px;
    line-height: 1.6;
}

.squishy-badge {
    background: linear-gradient(90deg, #FF5A82, #FF8A00);
    color: white;
    font-size: 11.52px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.review-score {
    font-size: 13.6px;
    color: #888;
    margin-left: 4px;
}

/* ---- Placeholder generico ---- */
.img-placeholder {
    background: linear-gradient(135deg, #ffe0ea 0%, #fff3e0 100%);
    border: 2px dashed #FF5A82;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    text-align: center;
    color: #FF5A82;
    gap: 8px;
}

.img-placeholder p {
    font-weight: 700;
    font-size: 14.4px;
    margin: 0;
    color: #FF5A82;
}

.img-placeholder small {
    color: #aaa;
    font-size: 12px;
}

.placeholder-icon {
    font-size: 40px;
}

.squishy-placeholder-hero {
    min-height: 260px;
    border-radius: 20px;
}

.squishy-placeholder-slide {
    width: 260px;
    height: 340px;
    border-radius: 12px;
    flex-shrink: 0;
}

/* ---- Cards de beneficios ---- */
.squishy-card {
    background: white;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 2px solid transparent;
}

.squishy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 90, 130, 0.12);
    border-color: #FFD6E0;
}

.squishy-benefits {
    background: #FFF9F0;
}

.squishy-benefits-grid {
    grid-template-columns: repeat(3, 1fr) !important;
}

@media (max-width: 768px) {
    .squishy-benefits-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ---- Passos (How it works) ---- */
.how-it-works {
    padding: 60px 0;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    text-align: center;
    margin-top: 32px;
}

.step-card {
    padding: 24px 16px;
}

.step-card h3 {
    font-size: 17.6px;
    margin-bottom: 8px;
    color: #2D2D2D;
}

.step-card p {
    color: #666;
    font-size: 15.2px;
    line-height: 1.6;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22.4px;
    font-weight: 800;
    margin: 0 auto 16px;
    color: white;
}

.step-pink {
    background: #FF5A82;
    box-shadow: 0 4px 15px rgba(255, 90, 130, 0.4);
}

.step-blue {
    background: #00B8D9;
    box-shadow: 0 4px 15px rgba(0, 184, 217, 0.4);
}

.step-orange {
    background: #FF8A00;
    box-shadow: 0 4px 15px rgba(255, 138, 0, 0.4);
}

/* ---- Pricing grid - dois cards ---- */
.squishy-pricing-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
    width: 100% !important;
    max-width: 980px !important;
    margin: 0 auto !important;
    align-items: stretch !important;
    padding: 32px 0 !important;
    box-sizing: border-box !important;
}

@media (max-width: 768px) {
    .squishy-pricing-grid {
        grid-template-columns: 1fr !important;
        padding: 0 !important;
    }
}

/* Card basico */
.basic-squishy-card {
    border: 2px solid #EAEAEA !important;
    background: white !important;
}

.basic-squishy-card .offer-title {
    color: #555 !important;
}

/* Card premium */
.premium-squishy-card {
    border: 3px solid #FF5A82 !important;
    background: white !important;
}

.premium-squishy-card .offer-title {
    color: #FF5A82 !important;
}

.premium-squishy-card .offer-price {
    color: #FF5A82 !important;
}

.premium-squishy-card .offer-currency {
    color: #FF5A82 !important;
}

/* ---- Botoes squishy ---- */
.squishy-btn {
    background: linear-gradient(135deg, #FF5A82, #FF3D6B) !important;
    border-radius: 50px !important;
    color: white !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    box-shadow: 0 5px 20px rgba(255, 90, 130, 0.35) !important;
    transition: all 0.25s ease !important;
    border: none !important;
}

.squishy-btn:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 8px 25px rgba(255, 90, 130, 0.5) !important;
    background: linear-gradient(135deg, #FF406D, #e02d59) !important;
}

.squishy-btn-secondary {
    background: white !important;
    border: 2px solid #00B8D9 !important;
    color: #00B8D9 !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    transition: all 0.25s ease !important;
}

.squishy-btn-secondary:hover {
    background: #00B8D9 !important;
    color: white !important;
    transform: translateY(-2px) !important;
}

/* ---- Depoimentos placeholder marquee ---- */
.depo-placeholder {
    width: 220px;
    height: 160px;
    background: linear-gradient(135deg, #ffe0ea 0%, #fff3e0 100%);
    border: 2px dashed #FF5A82;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-align: center;
    gap: 6px;
    padding: 16px;
}

.depo-placeholder p {
    font-weight: 700;
    font-size: 12.8px;
    color: #FF5A82;
    margin: 0;
}

.depo-placeholder small {
    font-size: 11.2px;
    color: #bbb;
}

/* ---- Social proof banner ---- */

/* ---- Card icon wrapper cor squishy ---- */
.squishy-theme .card-icon-wrapper {
    background: #fff0f4;
    border: 2px solid #FFD6E0;
}


/* ==========================================================================
   FIXES DE ALINHAMENTO ´┐¢ SQUISHY
   ========================================================================== */

/* ---- card-icon-wrapper: forcar flex centralizado ---- */
.card-icon-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
    margin-bottom: 16px !important;
    background: #fff0f4 !important;
    border: 2px solid #FFD6E0 !important;
    flex-shrink: 0 !important;
    line-height: 1 !important;
}

/* ---- SVG dentro do card-icon-wrapper ---- */
.card-icon {
    width: 24px !important;
    height: 24px !important;
    display: block !important;
    flex-shrink: 0 !important;
}

/* ---- Emoji dentro do card-icon-wrapper ---- */
.card-icon-wrapper>span {
    font-size: 24px !important;
    line-height: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* ---- Numeros dos steps ---- */
.step-number {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    font-size: 20.8px !important;
    font-weight: 800 !important;
    margin: 0 auto 16px !important;
    color: white !important;
    line-height: 1 !important;
    text-align: center !important;
}

/* ---- offer-footer-note: escudo alinhado ---- */
.offer-footer-note {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    color: #888 !important;
    font-size: 12.8px !important;
    margin-top: 12px !important;
}

.offer-footer-note svg {
    width: 14px !important;
    height: 14px !important;
    flex-shrink: 0 !important;
    vertical-align: middle !important;
    color: inherit !important;
}

/* ---- offer-features: checkmarks alinhados ---- */
.offer-features li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 8px !important;
    margin-bottom: 8px !important;
    font-size: 14.72px !important;
    color: #444 !important;
    line-height: 1.4 !important;
}

.offer-features li svg {
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0 !important;
    margin-top: 2px !important;
}

/* Cor dos checks: basico = azul, premium = rosa */
.basic-squishy-card .offer-features li svg {
    stroke: #00B8D9 !important;
}

.premium-squishy-card .offer-features li svg {
    stroke: #FF5A82 !important;
}

/* ---- hero-review: estrelas alinhadas ---- */
.review-stars-group {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    justify-content: center !important;
    margin-top: 4px !important;
}

.review-stars {
    display: flex !important;
    align-items: center !important;
    gap: 2px !important;
}

.review-stars svg {
    display: block !important;
    flex-shrink: 0 !important;
}

/* ---- Botoes: garantir texto centralizado ---- */
.btn.squishy-btn span,
.btn.squishy-btn-secondary span {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
}

/* ---- Audience card: forcar layout de coluna ---- */
.audience-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.squishy-card .card-icon-wrapper {
    align-self: flex-start !important;
}


/* ==========================================================================
   SQUISHY ´┐¢ OVERRIDE DEFINITIVO: PALETTE + BOTOES + PLANO BASICO
   Paleta: Roxo Criativo (#7C3AED) + Laranja (#F97316) + Cinza neutro
   ========================================================================== */

/* ---------- PALETA GLOBAL SQUISHY ---------- */
:root {
    --sq-primary: #7C3AED;
    /* roxo vibrante - CTA principal */
    --sq-primary-dark: #6D28D9;
    --sq-primary-glow: rgba(124, 58, 237, 0.35);
    --sq-orange: #F97316;
    /* laranja - badges, destaques */
    --sq-orange-dark: #EA580C;
    --sq-teal: #0891B2;
    /* azul-teal - plano basico */
    --sq-gray-text: #6B7280;
    --sq-gray-border: #D1D5DB;
    --sq-gray-bg: #F9FAFB;
}

/* ---------- TOP BAR ---------- */
.squishy-top-bar {
    background: linear-gradient(90deg, var(--sq-primary), var(--sq-orange)) !important;
    border-bottom: 3px solid var(--sq-primary-dark) !important;
}

/* ---------- BADGE DO HERO ---------- */
.squishy-badge {
    background: linear-gradient(90deg, var(--sq-primary), var(--sq-orange)) !important;
}

/* ---------- GLOW DO HERO ---------- */
.mockup-glow {
    background: radial-gradient(circle, var(--sq-primary-glow) 0%, transparent 70%) !important;
}

/* ---------- PLACEHOLDER BORDA ---------- */
.img-placeholder {
    background: linear-gradient(135deg, #ede9fe 0%, #fff7ed 100%) !important;
    border-color: var(--sq-primary) !important;
    color: var(--sq-primary) !important;
}

.img-placeholder p {
    color: var(--sq-primary) !important;
}

.depo-placeholder {
    background: linear-gradient(135deg, #ede9fe 0%, #fff7ed 100%) !important;
    border-color: var(--sq-primary) !important;
}

.depo-placeholder p {
    color: var(--sq-primary) !important;
}

/* ---------- SECAO DE BENEFICIOS ---------- */
.squishy-benefits {
    background: #faf5ff !important;
}

.squishy-card:hover {
    border-color: #bae6fd !important;
    box-shadow: 0 12px 30px rgba(2, 132, 199, 0.1) !important;
}

.card-icon-wrapper {
    background: #e0f2fe !important;
    border-color: #bae6fd !important;
}

/* ---------- STEP NUMBERS ---------- */
.step-pink {
    background: var(--sq-primary) !important;
    box-shadow: 0 4px 15px var(--sq-primary-glow) !important;
}

.step-blue {
    background: var(--sq-orange) !important;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.35) !important;
}

.step-orange {
    background: var(--sq-teal) !important;
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.35) !important;
}

/* ---------- CARD ICON: SVG stroke ---------- */
.card-icon {
    stroke: var(--sq-primary) !important;
}

/* ---------- GARANTIA ---------- */
.guarantee-box {
    border-color: var(--sq-primary) !important;
}

.guarantee-icon svg {
    stroke: var(--sq-primary) !important;
}

.guarantee-title {
    color: var(--sq-primary) !important;
}

.guarantee-highlight {
    color: var(--sq-primary) !important;
}

/* ---------- DEMO CTA inline ---------- */
.demo-inline-cta .demo-cta-text {
    color: var(--sq-primary) !important;
}

/* ---------- SECAO TESTIMONIAIS ---------- */
.marquee-section .section-title {
    color: #2D2D2D !important;
}

/* ---------- BOTAO PRINCIPAL (squishy-btn) ----------
   Sobrescreve COMPLETAMENTE o .btn-cta verde das galinhas
   -------------------------------------------------------- */
.squishy-btn,
.squishy-btn.btn-cta,
a.squishy-btn,
a.squishy-btn.btn-cta {
    /* reset total do btn-cta verde */
    background: linear-gradient(135deg, var(--sq-primary), var(--sq-primary-dark)) !important;
    border-top: none !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
    border: none !important;
    border-radius: 50px !important;
    /* layout de botao */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 0 32px !important;
    height: 52px !important;
    /* tipografia */
    color: #fff !important;
    font-weight: 800 !important;
    font-size: 16px !important;
    letter-spacing: 0.8px !important;
    text-decoration: none !important;
    /* sombra */
    box-shadow: 0 6px 22px var(--sq-primary-glow) !important;
    transition: all 0.25s ease !important;
    cursor: pointer !important;
}

.squishy-btn:hover,
.squishy-btn.btn-cta:hover {
    background: linear-gradient(135deg, var(--sq-primary-dark), #075985) !important;
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 10px 28px var(--sq-primary-glow) !important;
}

/* garantir que o span dentro nao quebre o layout */
.squishy-btn span,
.squishy-btn.btn-cta span {
    display: block !important;
    text-align: center !important;
    width: auto !important;
    line-height: 1 !important;
    color: #fff !important;
}

/* ---------- PLANO BASICO: tudo cinza ---------- */
.basic-squishy-card,
.basic-squishy-card.offer-card-design {
    background: var(--sq-gray-bg) !important;
    border: 2px solid var(--sq-gray-border) !important;
    box-shadow: none !important;
    opacity: 0.9 !important;
}

.basic-squishy-card .offer-title {
    color: var(--sq-gray-text) !important;
    font-size: 19.2px !important;
}

.basic-squishy-card .offer-was {
    color: #9CA3AF !important;
}

.basic-squishy-card .offer-price {
    color: #374151 !important;
    font-size: 41.6px !important;
}

.basic-squishy-card .offer-currency {
    color: #374151 !important;
}

.basic-squishy-card .offer-features li {
    color: #9CA3AF !important;
}

.basic-squishy-card .offer-features li svg {
    stroke: #9CA3AF !important;
}

/* Botao do plano basico: cinza outline */
.squishy-btn-secondary,
a.squishy-btn-secondary,
.squishy-btn-secondary.btn-cta,
a.squishy-btn-secondary.btn-cta {
    background: white !important;
    border: 2px solid var(--sq-gray-border) !important;
    border-top: 2px solid var(--sq-gray-border) !important;
    border-bottom: 2px solid var(--sq-gray-border) !important;
    border-radius: 50px !important;
    color: var(--sq-gray-text) !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 0 24px !important;
    height: 52px !important;
    font-size: 15.2px !important;
    box-shadow: none !important;
    transition: all 0.25s ease !important;
    text-decoration: none !important;
}

.squishy-btn-secondary:hover,
a.squishy-btn-secondary:hover {
    background: var(--sq-gray-bg) !important;
    border-color: var(--sq-gray-text) !important;
    transform: none !important;
}

.squishy-btn-secondary span,
a.squishy-btn-secondary span {
    display: block !important;
    text-align: center !important;
    color: var(--sq-gray-text) !important;
    line-height: 1 !important;
}

/* ---------- PLANO COMPLETO: roxo destaque ---------- */
.premium-squishy-card,
.premium-squishy-card.offer-card-design {
    border: 3px solid var(--sq-primary) !important;
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.18) !important;
    background: white !important;
}

.premium-squishy-card .offer-title {
    color: var(--sq-primary) !important;
}

.premium-squishy-card .offer-price {
    color: var(--sq-primary) !important;
}

.premium-squishy-card .offer-currency {
    color: var(--sq-primary) !important;
}

.premium-squishy-card .offer-features li svg {
    stroke: var(--sq-primary) !important;
}

.premium-squishy-card .offer-pill {
    background: linear-gradient(90deg, var(--sq-primary), var(--sq-orange)) !important;
}

/* Countdown no card premium */
.premium-squishy-card .timer-box {
    background: #ef4444 !important;
}

/* ---------- FAQ: cor do chevron ---------- */
.faq-question svg path {
    stroke: var(--sq-primary) !important;
}

/* ---------- SECTION TAG ---------- */
.section-tag {
    color: var(--sq-primary) !important;
}

/* ---------- DEMO SECTION ---------- */
.carousel-hint {
    color: var(--sq-primary) !important;
}

.demo-nav-btn {
    color: var(--sq-primary) !important;
    border-color: var(--sq-primary) !important;
}

.demo-nav-btn:hover {
    background: var(--sq-primary) !important;
    color: white !important;
}

/* ---------- HERO REVIEW STARS ---------- */
.review-stars svg {
    fill: #FBBF24 !important;
}


/* --- FAQ: remover borda verde herdada das galinhas --- */


/* ---------- CORRE´┐¢´┐¢O: remove degrad´┐¢ laranja+roxo ---------- */

/* Top bar: roxo s´┐¢lido mono */
.squishy-top-bar {
    background: #6D28D9 !important;
    border-bottom: 3px solid #5B21B6 !important;
}

/* Badge hero: laranja s´┐¢lido (se op´┐¢e ao roxo dos bot´┐¢es, cria contraste limpo) */
.squishy-badge {
    background: var(--sq-orange) !important;
    color: white !important;
}

/* Pill do card premium: roxo s´┐¢lido, sem laranja */
.premium-squishy-card .offer-pill {
    background: var(--sq-primary) !important;
}

/* Placeholder border: roxo s´┐¢lido */
.img-placeholder {
    background: linear-gradient(135deg, #ede9fe 0%, #eef2ff 100%) !important;
    border-color: var(--sq-primary) !important;
}


/* ---------- PALETA GLOBAL SQUISHY (AZUL CEU E AMARELO SOL) ---------- */
:root {
    --sq-primary: #0284C7;
    /* azul vibrante - CTA principal */
    --sq-primary-dark: #0369A1;
    --sq-primary-glow: rgba(2, 132, 199, 0.35);
    --sq-orange: #EAB308;
    /* amarelo sol - badges, destaques */
    --sq-orange-dark: #CA8A04;
    --sq-teal: #10B981;
    /* verde menta - plano basico e steps */
    --sq-gray-text: #6B7280;
    --sq-gray-border: #D1D5DB;
    --sq-gray-bg: #F9FAFB;
}


/* ---------- OVERRIDES FINAIS AZUL/AMARELO ---------- */

/* Top bar: vermelho timer solido */
.squishy-top-bar {
    background: #ef4444 !important;
    border-bottom: 3px solid #dc2626 !important;
}

/* Badge hero: elegante e moderno com cores da paleta azul */
.squishy-badge {
    background: #f0f9ff !important;
    border: 1px solid #bae6fd !important;
    color: var(--sq-primary-dark) !important;
    border-radius: 24px !important;
    padding: 6px 16px !important;
    font-size: 12px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

/* Placeholder border: azul bem claro */
.img-placeholder {
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%) !important;
    border-color: var(--sq-primary) !important;
}

.depo-placeholder {
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%) !important;
    border-color: var(--sq-primary) !important;
}

/* Beneficios: fundo super sutil azulzinho */
.squishy-benefits {
    background: #f0f9ff !important;
}

.card-icon-wrapper {
    background: #e0f2fe !important;
    border-color: #bae6fd !important;
}

/* Layout customizado para cards de beneficio (Row) */
.benefit-card {
    padding: 24px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
}

.benefit-card .card-icon-wrapper {
    margin-bottom: 0 !important;
    flex-shrink: 0;
    align-self: flex-start !important;
}

.benefit-card-content h3 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 8px;
    line-height: 1.3;
}

.benefit-card-content p {
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .benefit-card-content h3 {
        font-size: 16.8px;
        margin-top: 0;
        margin-bottom: 6px !important;
    }
}


/* ==========================================================================
   REVISAO DOS CARDS DE PRECO: IGUAIS (SEM SCALE) E TIMER FIX
   ========================================================================== */

/* Grid: mesma altura para ambos os cards */
.squishy-pricing-grid {
    align-items: stretch !important;
}

/* Card Basico: Restaurar estilo normal, borda solida, sem opacidade reduzida */
.basic-squishy-card,
.basic-squishy-card.offer-card-design {
    border: 2px solid var(--sq-gray-border) !important;
    opacity: 1 !important;
    transform: scale(1) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
}

.basic-squishy-card:hover {
    border-color: #9CA3AF !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06) !important;
}

/* Card Premium: Sem scale, apenas borda e sombra azul como destaque */
.premium-squishy-card,
.premium-squishy-card.offer-card-design {
    transform: scale(1) !important;
    border: 3px solid var(--sq-primary) !important;
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.15) !important;
}

/* ------------------------------------------
   AJUSTE DE CORES DO COUNTDOWN TIMER
   ------------------------------------------ */
.countdown-container {
    border-color: rgba(239, 68, 68, 0.3) !important;
    background: #fef2f2 !important;
    /* fundo sutil vermelho */
}

.countdown-label {
    color: #b91c1c !important;
}

.timer-box {
    background: #ef4444 !important;
    border-radius: 8px !important;
}

.timer-num {
    color: white !important;
}

.timer-label {
    color: white !important;
    opacity: 0.9 !important;
}

.timer-colon {
    color: #ef4444 !important;
}


/* ==========================================================================
   AJUSTES FINAIS: LARGURA, BADGE E REMOCAO DE VERDE
   ========================================================================== */

/* 1. Aumentar a largura dos cards para que o conteudo respire melhor */
.squishy-pricing-grid {
    max-width: 980px !important;
    /* Aumentado de 860px para 980px */
}

/* 2. Badge de MAIS VENDIDO: Vermelho vibrante para dar urgencia e contraste */
.premium-squishy-card .offer-pill {
    background: #EF4444 !important;
    /* Vermelho forte */
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
    border: 1px solid #DC2626 !important;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4) !important;
}

/* 3. Matar qualquer vestigio de verde herdado das galinhas */

/* Forcar checkmarks a obedecerem a paleta */
.offer-features li svg {
    stroke: var(--sq-primary) !important;
}

.basic-squishy-card .offer-features li svg {
    stroke: #9CA3AF !important;
}

/* Matar bordas verdes dos botoes em QUALQUER estado */
.btn-cta,
.btn-cta:hover,
.btn-cta:active,
.btn-cta:focus,
.squishy-btn,
.squishy-btn:hover,
.squishy-btn:active,
.squishy-btn:focus,
.squishy-btn-secondary,
.squishy-btn-secondary:hover,
.squishy-btn-secondary:active,
.squishy-btn-secondary:focus {
    border-top: none !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
}

/* Restaura apenas a borda cinza do botao secundario */
.squishy-btn-secondary,
.squishy-btn-secondary:hover,
.squishy-btn-secondary:active,
.squishy-btn-secondary:focus {
    border: 2px solid var(--sq-gray-border) !important;
}

.squishy-btn-secondary:hover {
    border-color: #9CA3AF !important;
}


/* ==========================================================================
   FORCAR WIDTH 100% NOS CARDS DA GRID
   ========================================================================== */
.squishy-pricing-grid .price-card,
.basic-squishy-card,
.premium-squishy-card {
    width: 100% !important;
    box-sizing: border-box !important;
}


/* ==========================================================================
   ESTRUTURA DO CARD BASICO (COM TOP BAR E WARNING FOOTER)
   ========================================================================== */

/* Removemos o padding do card geral para ter elementos que tocam nas bordas */
.basic-squishy-card {
    padding: 0 !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
}

/* 1. Top Bar (OFERTA BASICA) */
.basic-card-top-bar {
    background: var(--sq-gray-bg) !important;
    color: var(--sq-gray-text) !important;
    text-align: center !important;
    padding: 12px !important;
    font-weight: 700 !important;
    font-size: 15.2px !important;
    letter-spacing: 1px !important;
    border-bottom: 1px solid var(--sq-gray-border) !important;
    width: 100% !important;
}

/* 2. Area interna branca com padding normal */
.basic-card-inner {
    padding: 20px 24px 32px !important;
    background: white !important;
    flex: 1 !important;
}

/* 3. Rodape de Aviso (Nossa Paleta) */
.basic-card-warning-footer {
    background: #f0f9ff !important;
    border-top: 1px dashed var(--sq-primary) !important;
    padding: 24px !important;
    text-align: center !important;
}

.warning-title {
    font-weight: 700 !important;
    color: var(--sq-primary-dark) !important;
    margin-bottom: 8px !important;
    font-size: 15.2px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
}

.warning-text {
    font-size: 13.6px !important;
    color: #4b5563 !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

.warning-arrow {
    margin-top: 16px !important;
}

.warning-arrow svg {
    width: 24px !important;
    height: 24px !important;
    animation: bounceWarning 1.5s infinite !important;
    stroke: var(--sq-primary) !important;
}

@keyframes bounceWarning {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

/* Premium Card Layout Resets */
.premium-squishy-card {
    padding: 0 !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
}

.premium-squishy-card .basic-card-top-bar {
    background: var(--sq-primary) !important;
    color: white !important;
    border-bottom: none !important;
    font-size: 16px !important;
    letter-spacing: 1.5px !important;
}


/* ==========================================================================
   AJUSTES FINAIS: BULLETS IGUAIS E TAMANHO DE FONTE
   ========================================================================== */

/* 1. Fonte do preco no card basico maior */
.basic-squishy-card .offer-price {
    font-size: 64px !important;
    /* Estava 41.6px, agora quase do tamanho do premium (4.5) */
    color: #1F2937 !important;
    /* Mais escuro para dar peso */
}

.basic-squishy-card .offer-currency {
    /* Removed custom font-size to inherit default 24px and align with premium card */
}

/* 2. Bullets iguais ao premium */
.basic-squishy-card .offer-features li {
    color: #374151 !important;
    /* Texto mais escuro igual ao premium */
    opacity: 1 !important;
}

.basic-squishy-card .offer-features li svg {
    stroke: var(--sq-primary) !important;
    /* Check azul vibrante */
}

.btn-cta:hover .btn-cta-icon,
.btn-cta--hovered .btn-cta-icon {
    background-color: #ffffff;
}

.btn-cta:hover .btn-cta-arrow-default,
.btn-cta--hovered .btn-cta-arrow-default {
    opacity: 0;
    transform: rotate(45deg);
}

.btn-cta:hover .btn-cta-arrow-hover,
.btn-cta--hovered .btn-cta-arrow-hover {
    opacity: 1;
    transform: rotate(0deg);
}

.btn-cta:active {
    transform: scale(0.985);
}

/* Modal Lightbox */
.lightbox-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-overlay.open .lightbox-container {
    transform: scale(1);
}

/* FAQ Accordion */
.faq-item.active {
    border-color: var(--sq-primary) !important;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

.faq-item.active .faq-question {
    color: var(--sq-primary) !important;
    border-color: var(--sq-primary) !important;
}

@keyframes breathe {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.animate-breathe {
    animation: 2.4s ease-in-out infinite breathe;
}

.animate-breathe:hover {
    animation-play-state: paused !important;
    transform: translateY(-2px) scale(1.03) !important;
}

/* ==========================================================================
   SOCIAL PROOF TOAST
   ========================================================================== */
.sp-toast {
    position: fixed;
    bottom: 12px;
    left: 12px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffff;
    color: #1F2937;
    padding: 12px;
    border-radius: 24px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 320px;
    width: calc(100vw - 40px);
    transform: translateY(120%);
    opacity: 0;
    transition: transform 420ms cubic-bezier(0.34, 1.56, 0.64, 1),
        opacity 300ms ease;
    pointer-events: none;
}

.sp-toast.sp-toast--visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.sp-toast__icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background-color: #f0f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sp-toast__icon svg,
.sp-toast__icon img {
    width: 20px;
    height: 20px;
}

.sp-toast__body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.sp-toast__name {
    font-family: var(--font-titles);
    font-weight: 600;
    font-size: 14px;
    color: var(--sq-primary-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sp-toast__detail {
    font-size: 12px;
    color: #6B7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==========================================================================
   TESTIMONIALS GRID (NEW SECTION 2)
   ========================================================================== */
.testimonials-grid-section {
    padding: 64px 0;
    background-color: #ffffff;
}

.testim-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .testim-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testim-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testim-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.testim-stars {
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testim-text {
    font-size: 14.4px;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 24px;
    flex-grow: 1;
}

/* ==========================================================================
   PARA QUEM É SECTION
   ========================================================================== */
.for-who-section {
    padding: 80px 0;
    background-color: #fff;
}

.for-who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.for-who-card {
    background-color: #FFFDF8;
    border: 1px solid #F3E8D6;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.for-who-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.for-who-card .icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: #FEF3C7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.for-who-card h3 {
    color: var(--sq-primary-dark);
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 700;
}

.for-who-card p {
    color: #4B5563;
    font-size: 15px;
    line-height: 1.5;
}

/* ==========================================================================
   TUDO QUE VOCÊ VAI RECEBER SECTION
   ========================================================================== */
.package-section {
    padding: 80px 0;
    background-color: #F8FAFC;
}

.package-main-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .package-main-card {
        flex-direction: row;
    }
}

.package-main-img {
    flex: 1;
    min-height: 300px;
    background-color: #f1f5f9;
}

.package-main-img .img-placeholder {
    height: 100%;
    width: 100%;
    border-radius: 0;
    border: none;
}

.package-main-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.package-eyebrow {
    color: var(--sq-orange);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.package-title {
    color: var(--sq-primary-dark);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.package-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.price-old {
    color: #9CA3AF;
    text-decoration: line-through;
    font-size: 18px;
    font-weight: 600;
}

.price-new {
    color: #10B981;
    font-size: 28px;
    font-weight: 800;
}

.package-desc {
    color: #4B5563;
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.5;
}

.package-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.package-bullets li {
    position: relative;
    padding-left: 32px;
    color: #374151;
    font-size: 16px;
}

.package-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    color: #10B981;
    font-weight: bold;
    background: #D1FAE5;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.package-bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.bonus-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    text-align: left;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.bonus-card:hover {
    border-color: var(--sq-orange);
    transform: translateY(-4px);
}

.bonus-card h4 {
    color: var(--sq-primary-dark);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

.bonus-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.bonus-price .old {
    color: #9CA3AF;
    text-decoration: line-through;
    font-size: 14px;
}

.bonus-price .new {
    color: #10B981;
    font-weight: 800;
    font-size: 18px;
}

.bonus-card p {
    color: #4B5563;
    font-size: 15px;
    line-height: 1.5;
}

.testim-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testim-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.testim-info {
    display: flex;
    flex-direction: column;
}

.testim-name {
    font-weight: 700;
    font-size: 14px;
    color: #111827;
}

.testim-location {
    font-size: 12px;
    color: #6B7280;
}

.sp-toast__detail strong {
    color: var(--sq-primary);
    font-weight: 600;
}

@media (min-width: 480px) {
    .sp-toast {
        width: auto;
        min-width: 240px;
    }
}

/* Fix arrow direction on desktop for backup section */
@media (min-width: 768px) {
    .basic-card-warning-footer .warning-arrow {
        transform: rotate(-90deg);
        display: inline-block;
        margin-top: 0 !important;
        margin-left: 12px;
    }
}