/**
 * Monshell LP – Operação Secreta
 * CSS Premium Mobile-First
 *
 * Paleta:
 *   Preto base:    #0a0a0a
 *   Dourado prime: #c9a84c
 *   Dourado claro: #e8c76d
 *   Branco puro:   #ffffff
 *   Cinza sutil:   #1a1a1a / #2a2a2a
 *   Texto muted:   #9a9a9a
 *
 * Tipografia:
 *   Headlines: 'Playfair Display' (serif elegante)
 *   Corpo:     'Inter' (sans-serif limpo)
 */

/* ============================================================
   RESET & BASE
   ============================================================ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.monshell-lp-body {
    background-color: var(--mlp-bg-base, #040814);
    background-image: 
        /* Camada 1: Grade de Pontos Matemáticos */
        radial-gradient(var(--mlp-bg-dot-color, rgba(255, 255, 255, 0.05)) 1px, transparent 1px),
        /* Camada 2: Esfera de Luz Esquerda Superior */
        radial-gradient(circle 600px at 15% 30%, var(--mlp-bg-glow-1, rgba(30, 27, 75, 0.45)), transparent 80%),
        /* Camada 3: Esfera de Luz Direita Inferior */
        radial-gradient(circle 800px at 85% 70%, var(--mlp-bg-glow-2, rgba(15, 23, 42, 0.65)), transparent 80%);
    background-size: 28px 28px, 100% 100%, 100% 100%;
    background-attachment: scroll, fixed, fixed;
    background-repeat: repeat, no-repeat, no-repeat;
    color: #ffffff;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Remove distrações do tema */
body.monshell-lp-body #wpadminbar {
    position: fixed !important;
}

/* ============================================================
   VARIÁVEIS CSS
   ============================================================ */

:root {
    --gold:         #c9a84c;
    --gold-light:   #e8c76d;
    --gold-dim:     rgba(201, 168, 76, 0.15);
    --bg-base:      var(--mlp-bg-base, #040814);
    --bg-card:      rgba(10, 14, 28, 0.88); /* Solid-enough dark card */
    --bg-section:   transparent;
    --border:       rgba(201, 168, 76, 0.18); /* Subtle gold border, always visible */
    --text-muted:   #9a9a9a;
    --radius-sm:    8px;
    --radius-md:    16px;
    --radius-lg:    24px;
    --shadow-gold:  0 0 40px rgba(201, 168, 76, 0.15);
    --shadow-card:  0 8px 32px 0 rgba(0, 0, 0, 0.55);
    --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width:    1100px;
}

/* ============================================================
   UTILITÁRIOS GLOBAIS
   ============================================================ */

.mlp-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.mlp-section {
    position: relative;
    padding: 64px 0;
}

.mlp-gold {
    color: var(--gold);
}

.mlp-section__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 40px;
}

.mlp-section__title--sm {
    font-size: clamp(1.1rem, 3.5vw, 1.6rem);
}

/* ============================================================
   BADGE VIP
   ============================================================ */

.mlp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-dim);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.mlp-badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: mlp-pulse 2s ease-in-out infinite;
}

.mlp-badge--outline {
    background: transparent;
    border-color: rgba(201, 168, 76, 0.4);
    color: var(--gold-light);
}

@keyframes mlp-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(1.4); }
}

/* ============================================================
   BOTÃO CTA PRINCIPAL
   ============================================================ */

.mlp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    border-radius: var(--radius-sm);
    padding: 18px 36px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.mlp-btn--primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    background-size: 200% auto;
    color: #0a0a0a;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35), 0 0 0 0 rgba(201, 168, 76, 0.4);
    animation: mlp-btn-shimmer 3s linear infinite;
}

.mlp-btn--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.mlp-btn--primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.55), 0 0 0 4px rgba(201, 168, 76, 0.15);
    color: #0a0a0a;
    text-decoration: none;
}

.mlp-btn--primary:hover::before {
    transform: translateX(100%);
}

.mlp-btn--primary:active {
    transform: translateY(0) scale(0.99);
}

@keyframes mlp-btn-shimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* WhatsApp icon automático */
.mlp-btn.mlp-whatsapp-cta::after {
    content: '→';
    font-size: 1.1rem;
    transition: transform var(--transition);
}

.mlp-btn.mlp-whatsapp-cta:hover::after {
    transform: translateX(4px);
}

/* ============================================================
   MICROCOPY
   ============================================================ */

.mlp-microcopy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 16px;
    letter-spacing: 0.01em;
}

.mlp-dot {
    color: var(--gold);
    font-size: 0.6rem;
}

/* ============================================================
   SEÇÃO 1: HERO
   ============================================================ */

.mlp-hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 0 60px;
    overflow: hidden;
    position: relative;
}

/* ──────────────────────────────────────────────────────────────
   HERO BACKGROUND — Override obrigatório contra inline styles do Elementor
   O Elementor injeta style="" diretamente na <section>, por isso
   usamos seletor de ID + !important em cada propriedade individual.
   ────────────────────────────────────────────────────────────── */
#mlp-hero,
.mlp-hero {
    background-color:    #0a0a0a !important;
    background-image:
        /* Overlay escuro lateral (garante legibilidade do texto) */
        radial-gradient(ellipse 65% 80% at 30% 50%, rgba(4, 8, 20, 0.82) 0%, transparent 75%),
        /* Brilho dourado sutil no topo */
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 168, 76, 0.06) 0%, transparent 65%),
        /* Vinheta nas bordas */
        radial-gradient(ellipse 100% 100% at 50% 50%, transparent 40%, rgba(4, 8, 20, 0.75) 100%),
        /* Imagem dos bancos */
        url('../images/hero-bg.png') !important;
    background-size:     auto, auto, auto, cover !important;
    background-position: bottom !important;
    background-repeat:   no-repeat !important;
    background-attachment: scroll !important;
}

/* Linha decorativa superior */
.mlp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    opacity: 0.6;
}

.mlp-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 780px;
    margin: 0 auto;
}

.mlp-hero__headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.9rem, 6vw, 3.6rem);
    font-weight: 900;
    line-height: 1.18;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.mlp-hero__headline .mlp-gold {
    display: block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 60%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mlp-hero__subheadline {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 36px;
    font-weight: 300;
    line-height: 1.7;
    max-width: 580px;
}

/* ============================================================
   SEÇÃO 2: TRANSFORMAÇÃO VISUAL
   ============================================================ */

.mlp-transform {
    background: var(--bg-section);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.mlp-transform__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    align-items: center;
}

.mlp-transform__item {
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--transition);
}

.mlp-transform__item:hover {
    transform: scale(1.02);
}

.mlp-transform__item--center {
    transform: scale(1.05);
    z-index: 2;
    box-shadow: var(--shadow-gold);
}

.mlp-transform__item--center:hover {
    transform: scale(1.08);
}

/* Imagens reais (inseridas no Elementor) */
.mlp-transform__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-md);
}

/* Placeholder de imagem */
.mlp-img-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: var(--bg-card);
    border: 1px dashed var(--border);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    padding: 20px;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
}

.mlp-img-placeholder:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}

.mlp-img-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: var(--gold-dim);
    border: 1px solid var(--border);
    padding: 4px 12px;
    border-radius: 100px;
}

.mlp-img-label.mlp-gold {
    color: var(--gold);
    background: var(--gold-dim);
    border-color: var(--gold);
}

.mlp-img-hint {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.25);
    max-width: 130px;
    line-height: 1.4;
}

/* ============================================================
   SEÇÃO 3: PROVA SOCIAL
   ============================================================ */

.mlp-proof {
    /* Overlay escuro semi-transparente para a seção de depoimentos,
       garantindo contraste dos cards em relação ao fundo dinâmico */
    background: rgba(4, 8, 20, 0.55);
    padding-top: 64px;
    padding-bottom: 64px;
}

.mlp-proof__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

/* Card estilo print de WhatsApp */
.mlp-proof__card {
    background: rgba(10, 14, 28, 0.88);
    border: 1px solid rgba(201, 168, 76, 0.20);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.mlp-proof__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.mlp-proof__card:hover {
    border-color: rgba(201, 168, 76, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.65), 0 0 20px rgba(201, 168, 76, 0.08);
}

.mlp-proof__card:hover::before {
    opacity: 1;
}

.mlp-proof__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.mlp-proof__avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #0a0a0a;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mlp-proof__header > div {
    flex: 1;
    min-width: 0;
}

.mlp-proof__header strong {
    display: block;
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.2;
}

.mlp-proof__time {
    font-size: 0.72rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.mlp-proof__time::before {
    content: '✓✓';
    color: #4fc3f7;
    font-size: 0.65rem;
}

.mlp-proof__icon {
    color: #25d366;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.mlp-proof__text {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    font-style: italic;
}

/* ============================================================
   SEÇÃO 4: CTA FINAL
   ============================================================ */

.mlp-cta-final {
    background:
        radial-gradient(ellipse 70% 70% at 50% 100%, rgba(201, 168, 76, 0.1) 0%, transparent 70%),
        var(--bg-section);
    border-top: 1px solid var(--border);
    text-align: center;
}

.mlp-cta-final__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 680px;
    margin: 0 auto;
}

.mlp-cta-final__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 4.5vw, 2.6rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 32px;
}

.mlp-cta-final__disclaimer {
    margin-top: 32px;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.05em;
}

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */

/* Mobile pequeno: 375px */
@media (max-width: 400px) {
    .mlp-hero__headline {
        font-size: 1.7rem;
    }
    .mlp-btn {
        width: 100%;
        padding: 17px 24px;
        font-size: 0.95rem;
    }
    .mlp-transform__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .mlp-transform__item--center {
        transform: none;
        order: -1;
    }
}

/* Mobile padrão: até 640px */
@media (max-width: 640px) {
    .mlp-section {
        padding: 48px 0;
    }
    .mlp-hero {
        min-height: 100svh;
        padding: 60px 0 48px;
    }
    .mlp-btn {
        width: 100%;
        max-width: 340px;
        padding: 18px 24px;
    }
    .mlp-transform__grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
    .mlp-transform__item--center {
        transform: none;
        order: -1;
    }
    .mlp-proof__grid {
        grid-template-columns: 1fr;
    }
    .mlp-proof__grid .mlp-proof__card:nth-child(n+4) {
        display: none; /* Mostra apenas 3 no mobile */
    }
}

/* Tablet: 641px – 1024px */
@media (min-width: 641px) and (max-width: 1024px) {
    .mlp-transform__grid {
        gap: 12px;
    }
    .mlp-proof__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mlp-btn {
        padding: 18px 40px;
    }
}

/* Desktop: 1025px+ */
@media (min-width: 1025px) {
    .mlp-section {
        padding: 96px 0;
    }
    .mlp-hero {
        min-height: 100vh;
    }
    .mlp-transform__grid {
        gap: 24px;
    }
    .mlp-proof__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .mlp-proof__grid .mlp-proof__card:nth-child(n+4) {
        display: block;
    }
}

/* ============================================================
   ANIMAÇÕES DE ENTRADA
   ============================================================ */

@keyframes mlp-fade-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Variante segura: começa com opacity:1 para evitar flash de invisibilidade */
@keyframes mlp-slide-up {
    from {
        opacity: 0.01;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mlp-hero__inner > * {
    animation: mlp-fade-up 0.7s ease-out both;
}

.mlp-hero__inner > .mlp-badge           { animation-delay: 0.1s; }
.mlp-hero__inner > .mlp-hero__headline  { animation-delay: 0.25s; }
.mlp-hero__inner > .mlp-hero__subheadline { animation-delay: 0.4s; }
.mlp-hero__inner > .mlp-btn             { animation-delay: 0.55s; }
.mlp-hero__inner > .mlp-microcopy       { animation-delay: 0.7s; }

/* Animação de entrada dos cards via CSS puro (sem depender de JS / Intersection Observer) */
.mlp-proof__card {
    opacity: 1; /* garante visível mesmo sem animação */
    animation: mlp-slide-up 0.5s ease-out forwards;
}

/* Stagger progressivo para cada card */
.mlp-proof__card:nth-child(1) { animation-delay: 0.05s; }
.mlp-proof__card:nth-child(2) { animation-delay: 0.12s; }
.mlp-proof__card:nth-child(3) { animation-delay: 0.19s; }
.mlp-proof__card:nth-child(4) { animation-delay: 0.26s; }
.mlp-proof__card:nth-child(5) { animation-delay: 0.33s; }

/* Classe .mlp-visible mantida para retrocompatibilidade */
.mlp-proof__card.mlp-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   AJUSTES DE COMPATIBILIDADE COM ELEMENTOR
   ============================================================ */

/* Remove padding padrão do Elementor nas seções */
body.monshell-lp-body .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: var(--max-width);
}

/* Força o template full-width no Elementor */
body.monshell-lp-body #page,
body.monshell-lp-body .site-content,
body.monshell-lp-body .entry-content {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}

/* Remove margens padrão do WP */
body.monshell-lp-body .monshell-lp-main {
    margin: 0;
    padding: 0;
}

/* Botões do Elementor com estilo Monshell (quando usar classe CSS 'monshell-cta') */
body.monshell-lp-body .elementor-widget-button .elementor-button.monshell-cta {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    background-size: 200% auto;
    color: #0a0a0a;
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
    transition: all var(--transition);
    animation: mlp-btn-shimmer 3s linear infinite;
}

body.monshell-lp-body .elementor-widget-button .elementor-button.monshell-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.55);
}

/* ============================================================
   SCROLL REVEAL SIMPLES
   NOTA: Usa animação CSS pura — NÃO depende de JS/IntersectionObserver
   para garantir que os cards apareçam no Elementor e em qualquer contexto.
   ============================================================ */

.mlp-reveal {
    /* opacity:1 garante visibilidade mesmo se a animação não disparar */
    opacity: 1;
    animation: mlp-slide-up 0.6s ease-out forwards;
}

/* Estado visível explícito (retrocompatibilidade) */
.mlp-reveal.mlp-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   BEFORE & AFTER SLIDER (Hero)
   ============================================================ */

.mlp-ba-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 32px auto;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: col-resize;
    box-shadow:
        0 0 0 1px var(--border),
        0 24px 64px rgba(0, 0, 0, 0.7),
        var(--shadow-gold);
    user-select: none;
    -webkit-user-select: none;
    animation: mlp-fade-up 0.7s ease-out 0.35s both;
}

/* Both images fill the container */
.mlp-ba-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    pointer-events: none;
}

/* AFTER image — sits below, always full width.
   Scaled and translated slightly to perfectly align the headrest and ceiling with the BEFORE image. */
.mlp-ba-img--after {
    z-index: 1;
    transform: scale(1.12) translate(-1.5%, -5.2%);
    transform-origin: center center;
}

/* BEFORE clip div — sits on top, clipped by clip-path in JS */
.mlp-ba-before-clip {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
    transition: clip-path 0.05s linear, -webkit-clip-path 0.05s linear;
}

.mlp-ba-img--before {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Divider line */
.mlp-ba-divider {
    position: absolute;
    top: 0;
    left: 50%; /* JS controls this */
    bottom: 0;
    width: 3px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        var(--gold-light) 20%,
        var(--gold) 50%,
        var(--gold-light) 80%,
        transparent 100%
    );
    z-index: 10;
    transform: translateX(-50%);
    transition: left 0.05s linear;
    pointer-events: none;
}

/* Handle circle */
.mlp-ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    box-shadow:
        0 0 0 4px rgba(201, 168, 76, 0.25),
        0 0 20px rgba(201, 168, 76, 0.5),
        0 4px 16px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: col-resize;
    pointer-events: all;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.mlp-ba-handle:hover,
.mlp-ba-handle:focus {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow:
        0 0 0 6px rgba(201, 168, 76, 0.3),
        0 0 32px rgba(201, 168, 76, 0.7),
        0 4px 20px rgba(0, 0, 0, 0.6);
}

.mlp-ba-arrows {
    width: 28px;
    height: 14px;
    color: #0a0a0a;
}

/* ANTES / DEPOIS labels */
.mlp-ba-label {
    position: absolute;
    top: 20px;
    z-index: 8;
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: none;
}

.mlp-ba-label--before {
    left: 20px;
    background: rgba(10, 10, 10, 0.75);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.mlp-ba-label--after {
    right: 20px;
    background: rgba(201, 168, 76, 0.2);
    color: var(--gold-light);
    border: 1px solid rgba(201, 168, 76, 0.5);
}

/* Drag hint animation on load */
@keyframes mlp-ba-hint {
    0%   { left: 50%; }
    30%  { left: 32%; }
    65%  { left: 68%; }
    100% { left: 50%; }
}

/* Mobile adjustments */
@media (max-width: 640px) {
    .mlp-ba-wrapper {
        margin: 24px auto;
        border-radius: var(--radius-sm);
    }
    .mlp-ba-handle {
        width: 44px;
        height: 44px;
    }
    .mlp-ba-label {
        font-size: 0.6rem;
        padding: 5px 10px;
        top: 12px;
    }
    .mlp-ba-label--before { left: 12px; }
    .mlp-ba-label--after  { right: 12px; }
}

/* ============================================================
   SOBREPOSIÇÕES PARA VISIBILIDADE DO FUNDO PREMIUM
   Hero, Transformação e CTA recebem fundo transparente para
   o body dinâmico aparecer; Prova Social mantém overlay próprio.
   ============================================================ */

body.monshell-lp-body .mlp-hero,
body.monshell-lp-body .mlp-transform,
body.monshell-lp-body .mlp-cta-final {
    /*background: transparent !important;*/
    border-top: none !important;
    border-bottom: none !important;
}

/* Proof section: mantém overlay escuro para os cards ficarem visíveis */
body.monshell-lp-body .mlp-proof {
    background: rgba(4, 8, 20, 0.55) !important;
    border-top: 1px solid rgba(201, 168, 76, 0.10) !important;
    border-bottom: 1px solid rgba(201, 168, 76, 0.10) !important;
}
