/*** Google Fonts: Baloo 2 (WOFF2 Otimizado Subset Latino) ***/
@font-face {
    font-family: 'Baloo 2';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/baloo2/v23/wXKrE3kTposypRyd51jcAA.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ==========================================================================
   DESIGN TOKENS & VARIABLES
   ========================================================================== */
:root {
    /* --- CORES PRINCIPAIS (AZUL IDENTIDADE & CTA) --- */
    --color-primary: #0284C7;
    /* Azul vibrante - CTA Principal e Destaques */
    --color-primary-dark: #0369A1;
    /* Azul escuro - Títulos e hover */
    --color-primary-darker: #075985;
    /* Azul profundo */
    --color-primary-light: #f0f9ff;
    /* Fundo azul sutil */
    --color-primary-border: #bae6fd;
    /* Borda azul sutil */
    --color-primary-glow: rgba(2, 132, 199, 0.15);
    --color-primary-shadow: rgba(2, 132, 199, 0.4);

    /* --- CORES DE ACENTO (AMARELO SOL) --- */
    --color-accent: #EAB308;
    /* Amarelo sol - Badges e destaques */
    --color-accent-dark: #CA8A04;
    /* Ouro escuro */
    --color-accent-light: #FEFCE8;
    /* Fundo amarelo suave */
    --color-accent-border: #FEF08A;
    /* Borda amarela */

    /* --- FEEDBACK, STATUS E SEGURANÇA --- */
    --color-success: #16A34A;
    /* Verde sucesso / Garantia */
    --color-success-light: #DCFCE7;
    /* Fundo verde suave */
    --color-teal: #10B981;
    /* Verde menta */

    --color-danger: #EF4444;
    /* Vermelho timer / urgência */
    --color-danger-dark: #B91C1C;
    /* Vermelho escuro */
    --color-danger-light: #FEF2F2;
    /* Fundo vermelho suave */
    --color-danger-border: rgba(239, 68, 68, 0.3);

    /* --- SUPERFÍCIES E NEUTROS --- */
    --color-bg-page: #FAF9F6;
    --color-bg-card: #FFFFFF;
    --color-bg-warm: #FFFBEB;
    --color-border-light: #E5E7EB;
    --color-border-gray: #D1D5DB;

    /* --- TIPOGRAFIA & CORES DE TEXTO --- */
    --font-titles: 'Baloo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-body: 'Baloo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    --color-text-main: #1E293B;
    /* Títulos e textos de alto contraste */
    --color-text-body: #374151;
    /* Texto de leitura regular */
    --color-text-muted: #6B7280;
    /* Textos auxiliares e legendas */
    --color-text-gray: #4B5563;

    /* --- ELEVAÇÃO & SOMBRAS --- */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-cta: 0 6px 20px var(--color-primary-shadow);
    --shadow-cta-hover: 0 10px 25px rgba(2, 132, 199, 0.55);

    /* --- BORDAS & ARREDONDAMENTOS --- */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 50px;

    /* --- TRANSIÇÕES --- */
    --transition-fast: all 0.2s ease;
    --transition-base: all 0.25s ease;
}

/* ==========================================================================
   RESET & BASE TYPOGRAPHY
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-page);
    color: var(--color-text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

p {
    font-size: 18px;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-titles);
    color: var(--color-text-main);
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

/* ==========================================================================
   LAYOUT STRUCTURE
   ========================================================================== */
.app-wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
    padding: 0 16px;
}

.text-center {
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 29.6px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--color-text-muted);
}

/* ==========================================================================
   BUTTONS & CTAs (PALETA AZUL VIBRANTE)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-titles);
    font-weight: 700;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.5px;
    border: none;
}

.btn-cta {
    height: 68px;
    padding-left: 24px;
    padding-right: 24px;
    border-radius: var(--radius-lg);
    font-size: 17px;
    transition: var(--transition-fast);
}

.btn-cta:active {
    transform: scale(0.985);
}

@media (min-width: 1024px) {
    .btn-cta {
        max-width: 456px;
        margin-left: auto;
        margin-right: auto;
        font-size: 18px;
    }
}

/* Squishy Button - Primário (Gradiente Azul Vibrante) */
.squishy-btn {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: var(--radius-pill);
    color: #ffffff;
    font-weight: 800;
    font-size: 17px;
    box-shadow: var(--shadow-cta);
    transition: var(--transition-base);
}

.squishy-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-cta-hover);
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary-darker));
}

/* Squishy Button - Secundário (Cinza Outline) */
.squishy-btn-secondary {
    background: var(--color-bg-card);
    border: 2px solid var(--color-border-gray);
    border-radius: var(--radius-pill);
    color: var(--color-text-muted);
    font-weight: 700;
    font-size: 15px;
    height: 52px;
    padding: 0 24px;
    box-shadow: none;
    transition: var(--transition-base);
}

.squishy-btn-secondary:hover {
    background: #F9FAFB;
    border-color: #9CA3AF;
    color: var(--color-text-body);
}

/* Efeito de Respiração no Botão Principal */
.animate-breathe {
    animation: breathe 2.5s infinite ease-in-out;
}

.animate-breathe:hover {
    animation-play-state: paused;
    transform: translateY(-2px) scale(1.03);
}

@keyframes breathe {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }
}

/* ==========================================================================
   HERO SECTION & VSL
   ========================================================================== */
.hero-section {
    border-bottom: 1px solid rgba(84, 55, 37, 0.05);
    padding: 56px 0 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(160deg, #ffffff 0%, var(--color-primary-light) 100%);
}

.hero-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
}

.hero-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    background: var(--color-primary-light);
    border: 1px solid var(--color-primary-border);
    color: var(--color-primary-dark);
    border-radius: var(--radius-xl);
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    margin-bottom: 16px;
}

.hero-title {
    font-size: clamp(26px, 5.5vw, 40px);
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 800;
    color: var(--color-text-main);
}

.hero-subtitle {
    font-size: 20px;
    color: #555555;
    margin-bottom: 28px;
    line-height: 1.5;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 4px;
    margin-bottom: 32px;
}

.hero-cta-group--bottom {
    margin-top: 32px;
    margin-bottom: 0;
}

.cta-microcopy {
    font-size: 13px;
    color: var(--color-text-gray);
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.vsl-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 9 / 16;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 4px solid #ffffff;
    background: #000000;
}

#hero-vsl {
    width: 100%;
    height: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    display: block;
}

#vsl-unmute-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.65);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   CARROSSEL DE EXEMPLOS (TICKER CONTÍNUO)
   ========================================================================== */
.examples-carousel-section {
    padding: 64px 0;
    background: var(--color-primary-light);
    overflow: hidden;
}

.squishy-eyebrow {
    color: var(--color-accent);
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.marquee-container {
    width: 100%;
    min-height: 420px;
    overflow: hidden;
    position: relative;
    display: flex;
    padding-bottom: 20px;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-right: 24px;
}

.examples-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: ticker 40s linear infinite;
}

.examples-track:hover {
    animation-play-state: paused;
}

.example-card {
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.example-card:hover {
    transform: scale(1.03);
}

.example-card img {
    height: 400px;
    width: 280px;
    border-radius: var(--radius-xl);
    border: 4px solid #ffffff;

    object-fit: cover;
    display: block;
}

.examples-cta {
    margin-top: 40px;
    text-align: center;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   COMO FUNCIONA (3 PASSOS & MATERIAIS)
   ========================================================================== */
.how-it-works {
    background: var(--color-bg-warm);
    padding: 64px 0;
}

.how-it-works .section-title {
    color: #1B2B5A;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    text-align: center;
    margin-top: 32px;
    color: #1B2B5A;
}

.step-card {
    background: #fff;
    border-radius: var(--home-radius, 12px);
    padding: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid #e2e8f0;
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1B2B5A;
}

.step-card p {
    color: var(--color-text-gray);
    font-size: 17px;
    line-height: 1.5;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    font-weight: 800;
    margin: 0 auto 16px;
    color: #ffffff;
}

.step-pink {
    background: var(--color-primary);
    box-shadow: 0 4px 15px var(--color-primary-shadow);
}

.step-blue {
    background: var(--color-accent);
    box-shadow: 0 4px 15px rgba(234, 179, 8, 0.4);
}

.step-orange {
    background: var(--color-teal);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.materials-box {
    margin-top: 36px;
    background: var(--color-bg-card);
    border: 2px dashed #FCD34D;
    border-radius: var(--radius-lg);
    padding: 18px 24px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.materials-box-title {
    margin: 0 0 10px 0;
    font-size: 14px;
    font-weight: 800;
    color: #1B2B5A;
    letter-spacing: 0.5px;
}

.materials-box-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
    font-size: 16px;
    color: var(--color-text-gray);
    font-weight: 600;
}

/* ==========================================================================
   SEÇÃO DE OFERTAS & PRECIFICAÇÃO DUAL
   ========================================================================== */
.pricing-section {
    padding: 72px 0;
    background-color: var(--color-primary-light);
}

.pricing-section .section-header p {
    font-size: 16px;
    color: var(--color-text-muted);
    margin-top: 6px;
    font-weight: 500;
    text-align: center;
}

.squishy-pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    align-items: stretch;
    padding: 32px 0;
    box-sizing: border-box;
}

.price-card {
    background-color: var(--color-bg-card);
    border-radius: var(--radius-xl);
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

/* Card Super Oferta (Principal / Destacado) */
.premium-squishy-card {
    border: 3px solid var(--color-primary);
    box-shadow: 0 15px 40px var(--color-primary-glow);
}

.premium-squishy-card .basic-card-top-bar {
    background: var(--color-primary);
    color: #ffffff;
    font-size: 15px;
    letter-spacing: 1.5px;
}

.premium-squishy-card .offer-title {
    color: var(--color-primary);
    font-size: 24px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 72px;
    text-align: center;
}

.offer-title-accent {
    color: var(--color-accent-dark);
}

.premium-squishy-card .offer-price {
    color: var(--color-primary);
}

.premium-squishy-card .offer-currency {
    color: var(--color-primary);
}

.premium-squishy-card .offer-features li svg {
    stroke: var(--color-primary);
}

/* Card Oferta Básica */
.basic-squishy-card {
    border: 2px solid var(--color-border-gray);
    box-shadow: var(--shadow-sm);
}

.basic-card-top-bar {
    background: #F9FAFB;
    color: var(--color-text-muted);
    text-align: center;
    padding: 12px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--color-border-gray);
    width: 100%;
}

.basic-card-inner {
    padding: 20px 24px 32px;
    background: var(--color-bg-card);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.basic-card-image-wrapper {
    margin-bottom: 20px;
}

.basic-card-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
}

.basic-squishy-card .offer-title {
    color: var(--color-text-muted);
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 24px;
    text-align: center;
    font-size: 22px;
}

.basic-squishy-card .offer-price {
    font-size: 64px;
    color: var(--color-text-main);
}

.basic-squishy-card .offer-features {
    margin-top: 24px;
    margin-bottom: 24px;
}

.basic-squishy-card .offer-features li svg {
    stroke: var(--color-primary);
}

/* Box de Bônus da Super Oferta */
.premium-bonus-box {
    border: 2px solid var(--color-accent-border);
    border-radius: var(--radius-sm);
    padding: 16px;
    background: var(--color-accent-light);
    margin-bottom: 24px;
    text-align: left;
}

.premium-bonus-box-title {
    text-align: center;
    color: var(--color-accent-dark);
    font-weight: 800;
    font-size: 13.5px;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.bonus-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: center;
}

.bonus-item:last-child {
    margin-bottom: 0;
}

.bonus-item-img {
    width: 64px;
    height: 90px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #fde047;
    background: var(--color-bg-card);
}

.bonus-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bonus-item-tag {
    color: var(--color-accent-dark);
    font-size: 12px;
    font-weight: 800;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.bonus-item-title {
    margin: 0;
    font-weight: 700;
    font-size: 15px;
    color: var(--color-text-main);
    line-height: 1.2;
}

.bonus-item-desc {
    margin: 0;
    font-size: 12.5px;
    color: var(--color-text-muted);
}

/* Preço e Bullets Compartilhados */
.offer-price-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
    margin-bottom: 24px;
}

.offer-was {
    font-size: 16px;
    color: #777777;
    text-decoration: line-through;
    font-weight: 600;
    margin-bottom: 3px;
}

.offer-now-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: #0f172a;
    margin-bottom: 3px;
}

.offer-now-wrapper--dark {
    color: #333333;
}

.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-subtext {
    display: block;
    font-size: 13.5px;
    color: var(--color-text-muted);
    margin-top: 4px;
}

.offer-features {
    width: 100%;
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.offer-features li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Aviso de Bônus na Oferta Básica */
.basic-warning-box {
    background: #FEF9C3;
    border: 1.5px solid var(--color-accent);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    margin-bottom: 16px;
    text-align: center;
}

.basic-warning-box p {
    margin: 0;
    font-size: 16px;
    color: #92400E;
    font-weight: 700;
}

.offer-cta-btn {
    width: 100%;
    text-align: center;
    margin-bottom: 16px;
}

.offer-footer-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12.5px;
    color: #777777;
    font-weight: 500;
}

.offer-footer-note svg {
    width: 15px;
    height: 15px;
    color: var(--color-teal);
}

/* Countdown Timer */
.countdown-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    border: 1px dashed var(--color-danger-border);
    border-radius: var(--radius-lg);
    padding: 14px;
    background: var(--color-danger-light);
    margin-bottom: 24px;
}

.countdown-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-danger-dark);
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.timer-box {
    background: var(--color-danger);
    width: 58px;
    height: 58px;
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.2);
}

.timer-num {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}

.timer-label {
    font-size: 8.5px;
    font-weight: 700;
    color: #ffffff;
    opacity: 0.9;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.timer-colon {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-danger);
    margin: 0 1px;
    animation: blink-colon 1s infinite;
}

@keyframes blink-colon {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* ==========================================================================
   MINI CARD DE GARANTIA DE 7 DIAS
   ========================================================================== */
.guarantee-card-compact {
    max-width: 540px;
    margin: 32px auto 0;
    background: var(--color-bg-card);
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-sm);
}

.guarantee-icon-compact {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--color-success-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-success);
}

.guarantee-text-compact {
    text-align: left;
}

.guarantee-title-compact {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    color: var(--color-text-main);
}

.guarantee-desc-compact {
    margin: 2px 0 0 0;
    font-size: 14px;
    color: #64748B;
    line-height: 1.4;
}

/* ==========================================================================
   BENEFÍCIOS ("O brinquedo que ela mesma constrói")
   ========================================================================== */
.squishy-benefits {
    background: #f8fafc;
    padding: 64px 0;
}

.squishy-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 600px) {
    .squishy-benefits-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-card {
    background: var(--color-bg-card);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    transition: var(--transition-base);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px var(--color-primary-glow);
    border-color: var(--color-primary-border);
}

.card-icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #e0f2fe;
    border: 2px solid var(--color-primary-border);
    color: var(--color-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-card-content h3 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 6px;
    line-height: 1.3;
}

.benefit-card-content p {
    font-size: 16px;
    color: var(--color-text-gray);
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   DEPOIMENTOS (HISTÓRIAS REAIS)
   ========================================================================== */
.testimonials-grid-section {
    background: var(--color-bg-warm);
    padding: 64px 0;
}

.testim-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .testim-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testim-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.review-stars {
    gap: 4px;
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

.testim-text {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--color-text-body);
    margin-bottom: 24px;
    flex-grow: 1;
}

.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: #ffffff;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.avatar-coral {
    background-color: #FF8A65;
}

.avatar-teal {
    background-color: #4DB6AC;
}

.avatar-pink {
    background-color: #EC4899;
}

.testim-info {
    display: flex;
    flex-direction: column;
}

.testim-name {
    font-weight: 700;
    font-size: 14px;
    color: #111827;
}

.testim-location {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* ==========================================================================
   FAQ ACCORDION & FOOTER CTA
   ========================================================================== */
.faq-section {
    padding: 72px 0;
    background-color: var(--color-primary-light);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.faq-item.active {
    border-color: var(--color-primary);
}

.faq-question {
    width: 100%;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-titles);
    font-weight: 600;
    font-size: 15.5px;
    color: var(--color-text-main);
}

.faq-toggle-icon {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

.faq-answer-content {
    padding: 0 18px 18px 18px;
    color: var(--color-text-gray);
    line-height: 1.5;
    font-size: 14.5px;
}

.footer-cta-wrapper {
    padding-top: 48px;
    display: flex;
    justify-content: center;
    width: 100%;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: var(--color-bg-page);
    color: rgba(75, 61, 51, 0.8);
    padding: 48px 0;
    font-size: 13px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.copyright {
    line-height: 1.6;
    font-size: 12px;
    color: var(--color-text-muted);
}

/* ==========================================================================
   LIGHTBOX MODAL
   ========================================================================== */
.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;
}

.lightbox-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.close-lightbox {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background-color: #ffffff;
    color: #333333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.close-lightbox:hover {
    background-color: var(--color-danger);
    color: #ffffff;
    transform: scale(1.1);
}

.lightbox-container {
    width: 100%;
    max-width: 420px;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.25s ease;
}

.lightbox-overlay.open .lightbox-container {
    transform: scale(1);
}

.lightbox-page-mock {
    background: none;
    box-shadow: none;
    border: none;
    max-width: 90vw;
    max-height: 90vh;
}

#lightbox-full-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-sm);

    display: block;
    margin: 0 auto;
}

/* ==========================================================================
   SOCIAL PROOF TOAST (NOTIFICAÇÕES DE VENDA)
   ========================================================================== */
.sp-toast {
    position: fixed;
    bottom: 16px;
    left: 16px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--color-bg-card);
    color: var(--color-text-main);
    padding: 12px 16px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border-light);

    max-width: 340px;
    width: calc(100vw - 32px);
    transform: translateY(150%);
    opacity: 0;
    transition: transform 420ms cubic-bezier(0.34, 1.56, 0.64, 1), opacity 300ms ease;
    pointer-events: none;
}

.sp-toast--visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.sp-toast__icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background-color: var(--color-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sp-toast__body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.sp-toast__title {
    font-size: 13.5px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}

.sp-toast__detail {
    font-size: 12px;
    color: var(--color-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sp-toast__detail strong {
    color: var(--color-primary);
    font-weight: 600;
}

@media (min-width: 480px) {
    .sp-toast {
        width: auto;
        min-width: 260px;
    }
}

/* ==========================================================================
   ESCUDO ANTI-PRINT / PRINT SCREEN
   ========================================================================== */
#print-shield-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000;
    z-index: 99999999;
}

@media print {
    #print-shield-overlay {
        display: block;
    }

    body * {
        visibility: hidden;
    }
}

/* ==========================================================================
   NOVA HOMEPAGE (ACERVO) - REESCRITA
   ========================================================================== */
.home-page {
    /* CSS Variables for Home (so it doesn't conflict with legacy LP) */
    --home-bg: #ffffff;
    --home-text: #0f172a;
    --home-text-muted: #475569;
    --home-primary: #0284c7;
    --home-primary-hover: #0369a1;
    --home-accent: #eab308;
    --home-accent-hover: #ca8a04;
    --home-radius: 16px;

    font-family: 'Nunito Sans', sans-serif;
    background-color: var(--home-bg);
    color: var(--home-text);
    line-height: 1.6;
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page .eyebrow,
.home-page .logo {
    font-family: 'Baloo 2', cursive;
    color: var(--home-text);
}

.home-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.home-page .text-center {
    text-align: center;
}

/* Botoes base da Home */
.home-page .btn-primary,
.home-page .btn-secondary,
.home-page .btn-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;

    margin-top: auto;
}

.home-page .btn-primary {
    background-color: var(--home-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3);
}

.home-page .btn-primary:hover {
    background-color: var(--home-primary-hover);
    transform: translateY(-2px);
}

.home-page .btn-secondary {
    background-color: #f1f5f9;
    color: var(--home-primary);
}

.home-page .btn-secondary:hover {
    background-color: #e2e8f0;
}

.home-page .link-forward {
    color: var(--home-primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
}

.home-page .link-forward:hover {
    text-decoration: underline;
}

/* HEADER */
.site-header {
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--home-primary) !important;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.main-nav a {
    text-decoration: none;
    color: var(--home-text-muted);
    font-weight: 600;
    font-size: 1rem;
}

.main-nav a:hover {
    color: var(--home-primary);
}

.main-nav .btn-nav {
    background: #fffbeb;
    color: var(--home-accent-hover);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    border: 1px solid #fde047;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--home-text);
}

/* HERO */
.home-hero {
    padding: 100px 0 120px;
    overflow: hidden;
    position: relative;
    background: #ffffff;
}

.hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.hero-text {
    position: relative;
    z-index: 10;
    max-width: 750px;
    margin: 0 auto;
}

.hero-text .eyebrow {
    display: inline-block;
    background: #e0f2fe;
    color: var(--home-primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--home-text-muted);
    margin-bottom: 32px;
    max-width: 100%;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    justify-content: center;
}

.microcopy {
    font-size: 0.85rem;
    color: #64748b;
}

/* SECTIONS BASE */
section {
    padding: 55px 0;
}

.section-desc {
    font-size: 1.15rem;
    color: var(--home-text-muted);
    max-width: 768px;
    margin: 0 auto 40px;
}

.home-page h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    line-height: 1.2;
}

/* GRIDS */
.grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* CARDS */
.model-card {
    background: #fff;
    border-radius: var(--home-radius);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.model-card img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.card-content {
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: center;
    justify-content: flex-start;
}

.card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.badge-free {
    background: #dcfce7;
    color: #16a34a;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    margin-bottom: 16px;
    display: inline-block;
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-card {
    display: block;
    width: 100%;
    padding: 10px;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    color: var(--home-text);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s ease;
    margin-top: auto;
}

.btn-card:hover {
    background: var(--home-primary);
    color: #fff;
    border-color: var(--home-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.2);
}

.action-card {
    background: #fff;
    border-radius: var(--home-radius);
    padding: 32px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ac-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.action-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.action-card p {
    color: var(--home-text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.action-card .btn-card {
    width: auto;
    padding: 10px 24px;
    margin-top: auto;
}

/* SPLIT LAYOUT */
.split-layout {
    display: flex;
    gap: 60px;
}

.align-center {
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
}

.split-image img {
    box-shadow: none !important;
    width: 100%;
    height: auto;
    border-radius: var(--home-radius);
}

/* STEPS */
.how-to-steps-section {
    background: #f8fafc;
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.step-item {
    background: #fff;
    padding: 32px 20px;
    border-radius: var(--home-radius);
    border: 1px solid #e2e8f0;
}

.step-num {
    width: 48px;
    height: 48px;
    background: #e0f2fe;
    color: var(--home-primary);
    font-family: 'Baloo 2', cursive;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 16px;
}

/* CHIPS */
.chips-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.chip {
    padding: 12px 24px;
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    color: var(--home-text);
    font-size: 1.1rem;
    transition: all 0.2s;
}

.chip:hover {
    background: var(--home-primary);
    color: #fff;
    border-color: var(--home-primary);
}

/* COMERCIAL */
.commercial-cta-section {
    background: #fffbeb;
    padding-top: 36px;
    padding-bottom: 48px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.benefits-list li {
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 1.05rem;
}

/* COMPARAÇÃO */
.compare-card {
    background: #f8fafc;
    padding: 40px;
    border-radius: var(--home-radius);
    border: 2px solid transparent;
}

.compare-card:hover {
    border-color: var(--home-primary);
}

/* MATERIAIS */
.materials-flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.mat-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

/* FAQ */
.faq-home-section {
    background: #f8fafc;
}

.faq-wrapper {
    max-width: 800px;
    margin: 32px auto 0;
}

.faq-item summary {
    padding: 20px;
    font-family: 'Baloo 2', cursive;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--home-primary);
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-content {
    padding: 0 20px 20px;
    color: var(--home-text-muted);
}

/* FOOTER */
.home-footer {
    background: #0f172a;
    color: #fff;
    padding: 60px 0 40px;
}

.home-footer a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.home-footer a:hover {
    color: #fff;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #1e293b;
    padding-bottom: 32px;
    margin-bottom: 32px;
}

.footer-logo {
    font-family: 'Baloo 2', cursive;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.footer-links {
    display: flex;
    gap: 24px;
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #64748b;
}

.footer-legal {
    display: flex;
    gap: 16px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
    .split-layout {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }



    /* Scale down floating images */
    /* Scale down floating images */








    .grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* On small phones, push images below text to avoid blocking it */

/* NEW: GALLERY IMAGES */
.gallery-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* NEW: ACTION CARD IMAGES */
.action-img {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    margin-bottom: 20px;
    object-fit: cover;
    border: 1px solid #e2e8f0;
}

/* NEW: STEP CARDS */


.step-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
    border: 1px solid #f1f5f9;
}

/* NEW: INLINE MATERIALS */
.materials-inline {
    background: #fff;
    padding: 16px 24px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    display: inline-block;
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.materials-inline strong {
    color: var(--home-primary);
    margin-right: 12px;
}

/* NEW: COMMERCIAL CTA ENHANCEMENTS */
.commercial-title {
    margin-top: 16px;
    font-size: 2.8rem !important;
    line-height: 1.2;
    color: var(--home-text-dark, #0f172a);
    margin-bottom: 16px !important;
}

.bold-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.15rem;
    margin-bottom: 16px;
}

.check {
    color: #16a34a;
    font-weight: 800;
    font-size: 1.2rem;
}

.price-block {
    margin-top: 32px;
    margin-bottom: 16px;
    text-align: center;
}

.marquee-container,
.examples-carousel-section {
    mask-image: none !important;
    -webkit-mask-image: none !important;
    background: transparent !important;
}

.example-card,
.example-card img {
    box-shadow: none !important;
}

/* NEW: UPSELL MICRO LINK */
.upsell-link-micro {
    display: block;
    margin-top: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--home-primary-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.upsell-link-micro:hover {
    color: var(--home-accent-dark);
    text-decoration: underline;
}

.btn-card.clicked-state {
    background: #f8fafc;
    color: #64748b;
    box-shadow: none;
    transform: none;
    cursor: default;
}

/* VISIBILITY HELPERS */
.mobile-only {
    display: none !important;
}

/* ==========================================================================
   USER REQUESTED MOBILE ADJUSTMENTS (GLOBAL)
   ========================================================================== */
@media (max-width: 768px) {

    /* Global legibility and touch */
    p,
    span,
    div {
        font-size: 15px;
    }

    .hero-text p {
        font-size: 16px !important;
    }

    .btn-primary,
    .btn-secondary,
    .btn-card {
        font-size: 15px !important;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 24px !important;
    }

    /* 1. Header */
    .header-container {
        min-height: 54px !important;
        padding: 8px 16px !important;
    }

    .site-header {
        padding: 0 !important;
    }

    /* 2. Hero */
    .home-hero {
        padding: 24px 0 32px !important;
    }

    .hero-actions {
        gap: 12px !important;
    }

    .hero-container>div:last-child {
        margin-top: 24px !important;
    }

    /* 3. Materials */
    .materials-grid {
        gap: 12px !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
    }

    .mat-item {
        font-size: 15px !important;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px !important;
    }

    /* 4. 7 passos */
    .step-row-item {
        flex-direction: column !important;
        margin-top: 48px !important;
        gap: 20px !important;
    }

    .step-row-item.reverse {
        flex-direction: column !important;
    }

    .step-image {
        width: 100%;
        order: 1 !important;
    }

    .step-content {
        order: 2 !important;
        margin-top: 0 !important;
    }

    .step-content h3 {
        font-size: 1.5rem !important;
        margin-bottom: 12px !important;
    }

    .step-content p {
        margin-bottom: 12px !important;
    }

    /* 5. Veja como fica */
    .gallery-scroll {
        padding-bottom: 16px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 16px !important;
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
    }

    .gallery-scroll::-webkit-scrollbar {
        display: none;
    }

    .gallery-scroll>div {
        flex: 0 0 85% !important;
        max-width: none !important;
        scroll-snap-align: center !important;
    }

    /* 6. Resumindo / Cards / Action Cards */
    .steps-row,
    .squishy-benefits-grid,
    .testim-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .step-item {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
    }

    .step-item img {
        width: 100% !important;
        height: auto !important;
        margin-bottom: 8px !important;
    }

    .step-item h3 {
        font-size: 15px !important;
    }

    .action-card {
        padding: 20px !important;
    }

    .action-card h3 {
        font-size: 1.2rem !important;
        margin-bottom: 8px !important;
    }

    .action-card p {
        font-size: 14px !important;
        margin-bottom: 16px !important;
    }

    /* 7. Dicas e erros */
    .grid-3 {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }

    .step-card {
        padding: 16px !important;
    }

    /* 8. Moldes gratis */
    .grid-4,
    .grid-6 {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }

    .model-card .card-content {
        padding: 12px !important;
    }

    .model-card h3 {
        font-size: 14px !important;
        margin-bottom: 8px !important;
    }

    .model-card .badge-free {
        font-size: 11px !important;
        padding: 2px 6px !important;
    }

    .model-card .btn-card {
        width: 100% !important;
        padding: 8px !important;
        font-size: 14px !important;
    }
}

.commercial-cta-section.py-compact {
    padding-top: 32px;
    padding-bottom: 32px;
}

.split-text-commercial {
    flex: 0 0 45%;
}

.split-image-commercial {
    flex: 0 0 55%;
}

/* 2. LISTA DE BENEFÍCIOS / CHECKMARKS DA OFERTA */


.offer-features svg {
    width: 22px;
    height: 22px;
    color: var(--color-teal, #0d9488);
    flex-shrink: 0;
}

.offer-features.compact {
    max-width: 320px;
    margin: 0 auto 18px auto;
    text-align: left;
    font-size: 1rem;
}

.offer-features.compact svg {
    width: 18px;
    height: 18px;
}

/* 3. BLOCO DE PREÇO & MICROCONFIANÇA */


.price-value.compact {
    font-size: 2.3rem;
}

.price-period {
    font-size: 1rem;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-top: 2px;
}

.price-period.compact {
    font-size: 0.95rem;
}

.btn-cta-full {
    width: 100%;
    display: block;
    text-align: center;
    box-shadow: 0 10px 25px rgba(2, 132, 199, 0.3);
}

.btn-cta-compact {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(2, 132, 199, 0.3);
}

.micro-trust {
    text-align: center;
    margin-top: 14px;
    font-size: 1rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.guarantee-integrated-box {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.guarantee-integrated-box h4 {
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
    font-size: 1.15rem;
}

.guarantee-integrated-box p {
    color: #334155;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* 4. CHIPS DE TEMAS / FILTROS */
.theme-chips {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 24px 0 32px 0;
}

.theme-chip {
    background: #e0f2fe;
    color: #0284c7;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-block;
    border: none;
}

/* 5. HOMEPAGE FLOATING SQUISHIES HERO */

@media (max-width: 480px) {}

/* 6. TUTORIAL COMO FAZER (MATERIAIS E ETAPAS) */
.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.step-row-item {
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.step-row-item.reverse {
    flex-direction: row-reverse;
}

.step-image {
    flex: 1 1 400px;
    max-width: 100%;
}

.step-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.step-content {
    flex: 1 1 400px;
    text-align: left;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #0f172a;
}

.step-content p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 12px;
}

.tip-card {
    background: #ffffff;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    text-align: left;
}

.tip-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #0f172a;
}

.tip-card p {
    font-size: 1rem;
    color: var(--home-text-muted, #64748b);
    line-height: 1.5;
    margin: 0;
}

/* 7. FAQ COMPONENT & ACCORDION */




/* 8. BREADCRUMBS GLOBAL */


.breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
    color: var(--home-primary, #0284c7);
}

.breadcrumb span {
    color: var(--home-text-dark, #0f172a);
    font-weight: 600;
}

/* 9. PÁGINAS INSTITUCIONAIS / LEGAL CONTENT */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #334155;
    text-align: left;
}

.legal-content h1 {
    font-size: 2.25rem;
    margin-bottom: 16px;
    color: #0f172a;
    text-align: center;
}

.legal-content h2 {
    font-size: 1.4rem;
    color: #0f172a;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 1rem;
    margin-bottom: 16px;
    color: #475569;
}

.contact-card {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    text-align: left;
    max-width: 680px;
    margin: 0 auto;
}

.contact-email-box {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    padding: 16px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #0284c7;
    margin-bottom: 0;
}

/* 10. UTILITÁRIOS DE IMAGEM & CARD */
.img-shadow {
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    display: block;
}

.img-shadow-square {
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1/1;
    display: block;
}

/* ==========================================================================
   REFINAMENTO GLOBAL DE COMPONENTES E UTILITÁRIOS
   ========================================================================== */

/* 1. MODEL CARDS (GRID DE MOLDES) */
.model-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.model-card .btn-card {
    font-size: 0.95rem;
    font-weight: 700;
}

/* 2. PILLS E TAGS DE MATERIAIS */
.material-pill {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    color: #1e293b;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    display: inline-block;
    margin: 4px;
}

.material-subpill {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
    display: inline-block;
    margin: 3px;
}

/* 3. SEÇÃO FINAL DE CTA (CTA FINAL / OFERTA COMERCIAL) */


.final-cta-section .hero-actions {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 0;
}

.btn-cta-large {
    padding: 18px 48px;
    font-size: 1.25rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(2, 132, 199, 0.3);
}

.link-back-free {
    color: #475569;
    font-weight: 600;
    text-decoration: underline;
    margin-top: 12px;
    display: inline-block;
}

.link-back-free:hover {
    color: var(--home-primary);
}

/* 4. CARD ICON WRAPPER */
.card-icon-wrapper.icon-blue {
    background: #e0f2fe;
    color: #0284c7;
}

.marquee-fullwidth {
    margin-top: 40px;
    overflow: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* ==========================================================================

/* ==========================================================================
   HOMEPAGE HERO & FLOATING SQUISHIES
   ========================================================================== */


.home-hero .hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.home-hero .hero-text {
    position: relative;
    z-index: 10;
    max-width: 750px;
    margin: 0 auto;
}

.home-hero .eyebrow {
    display: inline-block;
    background: #e0f2fe;
    color: var(--home-primary, #0284c7);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.home-hero h1 {
    font-family: 'Baloo 2', cursive, sans-serif;
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #0f172a;
    font-weight: 800;
}

.home-hero p {
    font-size: 1.2rem;
    color: #475569;
    line-height: 1.55;
    margin-bottom: 32px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.home-hero .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    justify-content: center;
    align-items: center;
}

.home-hero .btn-primary {
    background: var(--color-primary, #0284c7);
    color: #ffffff !important;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.35);
    transition: all 0.25s ease;
}

.home-hero .btn-primary:hover {
    background: var(--color-primary-dark, #0369a1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(2, 132, 199, 0.45);
}

.home-hero .btn-secondary {
    background: #f1f5f9;
    color: #0284c7 !important;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.home-hero .btn-secondary:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

.home-hero .microcopy {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
}

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.squishy-composition {
    position: relative;
    width: 100%;
    height: 100%;
}

.sq-img {
    position: absolute;
    object-fit: contain;
    pointer-events: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.sq-img:hover {
    transform: scale(1.1) rotate(0deg) !important;
    z-index: 20;
}

.sq-1 {
    top: -20px;
    left: 0;
    width: 160px;
    transform: rotate(-12deg);
}

.sq-2 {
    top: 20px;
    right: 0;
    width: 180px;
    transform: rotate(15deg);
}

.sq-3 {
    bottom: -40px;
    left: 5%;
    width: 200px;
    transform: rotate(8deg);
}

.sq-4 {
    bottom: -20px;
    right: 8%;
    width: 150px;
    transform: rotate(-18deg);
}

/* ==========================================================================
   SEÇÃO DE MOLDES GRÁTIS - FUNDO AZUL CLARINHO
   ========================================================================== */
.free-models-section {
    background-color: #f0f9ff !important;
    padding: 64px 0 72px;
}

.free-models-section .eyebrow {
    display: none !important;
}

.free-models-section .model-card {
    background: #ffffff !important;
    border: 1px solid #e0f2fe;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.06);
}

/* ==========================================================================
   BTN-CARD COM VISUAL BTN-SECONDARY
   ========================================================================== */
.btn-card,
.model-card .btn-card,
.action-card .btn-card,
.model-card .btn-secondary,
.action-card .btn-secondary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #f1f5f9 !important;
    color: #0284c7 !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-family: 'Nunito Sans', 'Baloo 2', sans-serif !important;
    font-weight: 800 !important;
    font-size: 0.95rem !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    border: none !important;
    box-shadow: none !important;
    margin-top: auto !important;
    width: auto !important;
}

.btn-card:hover,
.model-card .btn-card:hover,
.action-card .btn-card:hover,
.model-card .btn-secondary:hover,
.action-card .btn-secondary:hover {
    background-color: #e2e8f0 !important;
    color: #0369a1 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.15) !important;
}

/* ==========================================================================
   ESTRELAS DE AVALIAÇÃO - AMARELO DOURADO
   ========================================================================== */
.stars,
.review-stars,
.testim-card .stars,
.rating-stars,
.review-stars .stars {
    color: #facc15 !important;
    letter-spacing: 2px;
    font-size: 1.25rem;
    display: inline-block;
}

/* ==========================================================================
   FAQ PADDING FIX
   ========================================================================== */


.faq-item .faq-content {
    padding: 0 20px 16px 20px !important;
    color: #475569 !important;
    line-height: 1.6 !important;
    font-size: 0.95rem !important;
}

.faq-item .faq-content p,
.faq-item p {
    padding: 0 !important;
    margin: 0 !important;
    color: inherit !important;
    line-height: inherit !important;
    font-size: inherit !important;
}

.faq-item .faq-content p+p {
    margin-top: 8px !important;
}

/* ==========================================================================
   FINAL CTA SECTION & SECTION-DESC & SPLIT-IMAGE
   ========================================================================== */
.final-cta-section {
    background-color: #fefce8 !important;
    border-top: 1px solid #fef08a !important;
    border-bottom: 1px solid #fef08a !important;
    padding: 72px 0 80px !important;
}

.final-cta-section h2 {
    color: #0f172a !important;
    font-size: 2.25rem;
    margin-bottom: 16px;
    font-weight: 800;
}

.final-cta-section .section-desc {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 24px;
}

.final-cta-section .price-block {
    margin-bottom: 32px;
}

.final-cta-section .price-value {
    color: #0f172a !important;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Baloo 2', cursive, sans-serif !important;
    line-height: 1 !important;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 992px) {
    .home-hero {
        padding: 60px 0 80px;
    }

    .home-hero h1 {
        font-size: 2.6rem;
    }

    .sq-3 {
        bottom: -20px;
        left: 0;
    }

    .sq-4 {
        bottom: -20px;
        right: 0;
    }
}



/* ==========================================================================
   UNIFIED MOBILE OPTIMIZATIONS (<= 768px & <= 480px)
   ========================================================================== */
@media (max-width: 768px) {

    /* 1. Hero Mobile */
    .home-hero {
        padding: 60px 0 40px !important;
    }

    .home-hero h1 {
        font-size: 2rem !important;
        line-height: 1.15 !important;
        margin-bottom: 16px !important;
    }

    .home-hero p {
        font-size: 1.05rem !important;
        margin-bottom: 24px !important;
    }

    .home-hero .hero-actions {
        flex-direction: column !important;
        gap: 12px !important;
        width: 100%;
    }

    .home-hero .hero-actions .btn-primary,
    .home-hero .hero-actions .btn-secondary {
        width: 100%;
        max-width: 320px;
    }

    .hero-visual {
        position: relative !important;
        height: auto !important;
        margin-top: 0 !important;
        pointer-events: auto !important;
    }

    .squishy-composition {
        display: flex !important;
        justify-content: center !important;
        align-items: flex-start !important;
        gap: 0px !important;
        height: auto !important;
        margin-top: -20px !important;
    }

    .sq-img {
        position: relative !important;
    }

    .sq-1 {
        top: 0 !important;
        left: auto !important;
        width: 130px !important;
        transform: rotate(-8deg) !important;
    }

    .sq-2 {
        top: 10px !important;
        right: auto !important;
        width: 140px !important;
        transform: rotate(10deg) !important;
    }

    .sq-3,
    .sq-4 {
        display: none !important;
    }

    /* 2. Commercial / Offer Section Mobile */
    .commercial-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        margin-top: 16px !important;
        margin-bottom: 16px !important;
        color: var(--home-text-dark, #0f172a) !important;
    }

    .commercial-desc {
        font-size: 1.15rem !important;
        color: #334155 !important;
        line-height: 1.5 !important;
        margin-top: 12px !important;
        margin-bottom: 20px !important;
    }

    .offer-features li {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        font-size: 1.05rem !important;
        color: var(--home-text-dark, #0f172a) !important;
        line-height: 1.4 !important;
    }

    .price-value {
        font-size: 2.75rem !important;
        font-weight: 800 !important;
        color: #0f172a !important;
        display: block !important;
        line-height: 1 !important;
        font-family: 'Baloo 2', cursive, sans-serif !important;
    }

    .btn-large {
        padding: 16px 28px !important;
        font-size: 1.15rem !important;
        width: 100% !important;
        max-width: 360px !important;
        margin: 0 auto !important;
        display: block !important;
        text-align: center !important;
    }

    .split-image-commercial img {
        width: 100% !important;
        max-width: 380px !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto !important;
        object-fit: contain !important;
        transform: none !important;
    }

    /* 3. Steps & Materials Mobile */
    .materials-inline span {
        display: block !important;
        margin-top: 8px !important;
        line-height: 1.8 !important;
        color: var(--home-text-muted) !important;
    }
}


/* ==========================================================================
   ABSORBED FROM NOVOS-AJUSTES.CSS
   ========================================================================== */


/* ==========================================================================
   NOVOS AJUSTES E ADIÇÕES RECENTES DO CSS
   ========================================================================== */

/* 1. GRID PARA 3 CARDS DE PASSOS (.steps-3 / .steps-row.steps-3) */
.steps-row.steps-3,
.steps-3 {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
    max-width: 1000px !important;
    margin: 0 auto 32px auto !important;
}

/* 2. CHOOSE GRID 2 COLUNAS (.choose-grid-2) */
.choose-grid-2 {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
    max-width: 900px !important;
    margin: 32px auto 0 auto !important;
}

.choose-grid-2 .action-card {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
}

/* 3. BORDA VISÍVEL EM BENEFIT-CARD */
.benefit-card {
    border: 1px solid #e2e8f0 !important;
}

/* 4. GALERIA "VEJA COMO FICA" - 4 CARDS EM 1 LINHA NO DESKTOP (.gallery-desktop-grid) */
.gallery-desktop-grid,
.gallery-scroll.gallery-desktop-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    max-width: 1200px !important;
    margin: 32px auto 0 auto !important;
    overflow-x: visible !important;
}

.gallery-desktop-grid > div,
.gallery-scroll.gallery-desktop-grid > div {
    width: 100% !important;
    flex: none !important;
}

.gallery-desktop-grid .gallery-img,
.gallery-scroll.gallery-desktop-grid .gallery-img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1/1 !important;
    object-fit: cover !important;
    border-radius: 14px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.gallery-desktop-grid .gallery-img:hover,
.gallery-scroll.gallery-desktop-grid .gallery-img:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

/* 5. PRICE VALUE - FONTE BALOO 2 */
.price-value,
.price-block .price-value,
.commercial-cta-section .price-value,
.final-cta-section .price-value,
.offer-section .price-value {
    font-family: 'Baloo 2', cursive, sans-serif !important;
    font-weight: 800 !important;
    line-height: 1 !important;
}

/* 6. BREADCRUMB DISCRETO (CINZA CLARO SUAVE) */
.breadcrumb {
    padding-top: 28px !important;
    padding-bottom: 8px !important;
    font-size: 0.88rem !important;
    color: #94a3b8 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
}

.breadcrumb a {
    color: #94a3b8 !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: color 0.2s ease !important;
}

.breadcrumb a:hover {
    color: #64748b !important;
    text-decoration: underline !important;
}

.breadcrumb span {
    color: #64748b !important;
    font-weight: 500 !important;
}

/* 7. QUICK HIGHLIGHTS STRIP (1 LINHA NO DESKTOP) */
.quick-highlights-list {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 36px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 auto !important;
    font-weight: 700 !important;
    color: #475569 !important;
    font-size: 1.05rem !important;
    flex-wrap: nowrap !important;
}

.quick-highlights-list li {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    white-space: nowrap !important;
}

/* 8. MATERIAIS GRID & MAT-ITEM (CENTRALIZADOS) */
.materials-grid {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
    max-width: 900px !important;
    margin: 32px auto 0 auto !important;
}

.mat-item {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 50px !important;
    padding: 12px 24px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease !important;
}

.mat-item:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(2, 132, 199, 0.12) !important;
    border-color: #bae6fd !important;
}

/* 9. TUTORIAL PASSO A PASSO (SEM SCROLL HORIZONTAL) */
#passo-a-passo {
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative !important;
}

#passo-a-passo .container {
    max-width: 1000px !important;
    margin: 0 auto !important;
}

.step-row-item {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 48px !important;
    margin-top: 48px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.step-row-item.reverse {
    flex-direction: row-reverse !important;
}

.step-image {
    flex: 0 0 45% !important;
    max-width: 460px !important;
    width: 45% !important;
    box-sizing: border-box !important;
}

.step-image img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
    object-fit: cover !important;
}

.step-content {
    flex: 0 0 50% !important;
    width: 50% !important;
    text-align: left !important;
    box-sizing: border-box !important;
}

.step-content h3 {
    font-size: 1.5rem !important;
    margin-bottom: 12px !important;
    color: #0f172a !important;
}

.step-content p {
    font-size: 1.05rem !important;
    color: #475569 !important;
    line-height: 1.6 !important;
    margin-bottom: 12px !important;
}

/* 10. GRID 4 COLUNAS (.grid-4) */
.grid-4 {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    max-width: 1200px !important;
    margin: 32px auto 0 auto !important;
}


/* ==========================================================================
   UNIFIED RESPONSIVE MEDIA QUERIES
   ========================================================================== */


@media (max-width: 992px) {
.commercial-title {
        font-size: 2.2rem !important;
    }

    .price-value {
        font-size: 3.5rem;
    }
.grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
}

@media (max-width: 768px) {
.squishy-pricing-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }
.main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid #e2e8f0;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .grid-6 {
        grid-template-columns: 1fr;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .steps-row {
        grid-template-columns: 1fr;
    }

    .home-page .btn-primary,
    .home-page .btn-secondary,
    .home-page .btn-card {
        width: 100%;
        margin-top: auto;
    }



    .footer-top {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
.materials-inline {
        border-radius: 16px;
        padding: 16px;
    }

    .materials-inline span {
        display: block;
        margin-top: 8px;
        line-height: 1.8;
    }
.marquee-container {
        padding-bottom: 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        display: flex;
        scrollbar-width: none;
        /* Firefox */
    }

    .marquee-container::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .examples-track {
        animation: none !important;
        width: auto;
        padding: 0 20px;
    }

    .marquee-content {
        padding-right: 20px;
    }

    .example-card {
        scroll-snap-align: center;
        flex: 0 0 240px;
    }
.mobile-only {
        display: block !important;
    }

    .desktop-only {
        display: none !important;
    }
.split-text-commercial,
    .split-image-commercial {
        flex: 1 1 100%;
    }
.sq-3,
    .sq-4 {
        display: none !important;
    }
.steps-row.steps-3,
    .steps-3 {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
.choose-grid-2 {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .choose-grid-2 .action-card {
        flex-direction: row !important;
        text-align: left !important;
        padding: 16px !important;
        gap: 16px !important;
        align-items: center !important;
    }

    .choose-grid-2 .action-img {
        width: 90px !important;
        height: 90px !important;
        border-radius: 12px !important;
        object-fit: cover !important;
        margin-bottom: 0 !important;
        flex-shrink: 0 !important;
    }

    .choose-grid-2 .action-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        flex: 1 !important;
        text-align: left !important;
    }

    .choose-grid-2 .action-content h3 {
        font-size: 1rem !important;
        margin-bottom: 6px !important;
        text-align: left !important;
    }

    .choose-grid-2 .action-content p {
        font-size: 0.875rem !important;
        margin-bottom: 10px !important;
    }

    .choose-grid-2 .btn-card {
        font-size: 0.8rem !important;
        padding: 7px 16px !important;
        min-height: 36px !important;
    }
.gallery-scroll.gallery-desktop-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 16px !important;
        padding-bottom: 16px !important;
        scrollbar-width: none !important;
    }

    .gallery-scroll.gallery-desktop-grid::-webkit-scrollbar {
        display: none !important;
    }

    .gallery-scroll.gallery-desktop-grid > div {
        flex: 0 0 75% !important;
        scroll-snap-align: center !important;
    }
.quick-highlights-list {
        flex-direction: column !important;
        gap: 12px !important;
        flex-wrap: wrap !important;
    }
.step-row-item,
    .step-row-item.reverse {
        flex-direction: column !important;
        flex-wrap: wrap !important;
        gap: 20px !important;
        margin-top: 36px !important;
        text-align: left !important;
    }

    .step-image,
    .step-content {
        flex: 1 1 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .step-content {
        text-align: left !important;
    }
}

@media (max-width: 480px) {
.faq-item summary {
        padding: 16px 20px !important;
        font-weight: 700 !important;
        font-size: 1.05rem !important;
        color: #0f172a !important;
        cursor: pointer !important;
        list-style: none !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
.grid-4 {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
}
