/* ===========================================
   MULHER DE FÉ – Landing Page SaaS
   =========================================== */

:root {
    --cor-principal: #E05679;
    --cor-secundaria: #D49A4A;
    --cor-clara: #FFF7F9;
    --cor-texto: #333;

    /* derivadas */
    --cor-principal-hover: #c0415f;
    --cor-principal-light: rgba(224, 86, 121, 0.10);
    --cor-secundaria-light: rgba(212, 154, 74, 0.12);
    --sombra-leve: 0 8px 24px rgba(224, 86, 121, 0.10);
    --sombra-media: 0 14px 36px rgba(224, 86, 121, 0.14);
    --radius: 14px;
}

/* --- BASE --- */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--cor-clara);
    color: var(--cor-texto);
    overflow-x: hidden;
    line-height: 1.65;
}

a { transition: color .2s; }

/* --- TIPOGRAFIA --- */
.lp-label {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--cor-principal);
    display: inline-block;
    margin-bottom: .4rem;
}

.lp-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.65rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.18;
    color: #1a1a1a;
}

/* --- NAVBAR --- */
.lp-nav {
    background: rgba(255, 247, 249, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(224, 86, 121, 0.12);
    transition: box-shadow .3s;
}

.lp-nav.scrolled {
    box-shadow: 0 4px 24px rgba(224, 86, 121, 0.10);
}

.lp-nav .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--cor-principal);
    letter-spacing: -.01em;
}

.lp-nav .nav-link {
    color: var(--cor-texto);
    font-weight: 600;
    font-size: .9rem;
    padding: .45rem .85rem;
    border-radius: 999px;
    transition: background .2s, color .2s;
}

.lp-nav .nav-link:hover {
    background: var(--cor-principal-light);
    color: var(--cor-principal);
}

/* --- BOTÕES --- */
.btn-cor-principal {
    background: var(--cor-principal);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-weight: 700;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 6px 20px rgba(224, 86, 121, 0.35);
}

.btn-cor-principal:hover {
    background: var(--cor-principal-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(224, 86, 121, 0.45);
}

.btn-cor-secundaria {
    background: var(--cor-secundaria);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-weight: 700;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 6px 20px rgba(212, 154, 74, 0.30);
}

.btn-cor-secundaria:hover {
    background: #b8822e;
    color: #fff;
    transform: translateY(-2px);
}

.btn-lp-outline {
    background: transparent;
    color: var(--cor-principal);
    border: 2px solid var(--cor-principal);
    border-radius: 999px;
    font-weight: 700;
    transition: background .2s, color .2s, transform .15s;
}

.btn-lp-outline:hover {
    background: var(--cor-principal);
    color: #fff;
    transform: translateY(-2px);
}

.btn-lp-white {
    background: #fff;
    color: var(--cor-principal);
    border: none;
    border-radius: 999px;
    font-weight: 700;
    transition: opacity .2s, transform .15s;
}

.btn-lp-white:hover {
    opacity: .92;
    color: var(--cor-principal);
    transform: translateY(-2px);
}

.btn-lp-ghost {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.50);
    border-radius: 999px;
    font-weight: 700;
    transition: background .2s, transform .15s;
}

.btn-lp-ghost:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    transform: translateY(-2px);
}

/* --- HERO --- */
.lp-hero {
    position: relative;
    padding: 5rem 0 4rem;
    overflow: hidden;
    background: linear-gradient(148deg, #ffe6ee 0%, var(--cor-clara) 40%, #fdf5e8 100%);
}

.lp-hero::before {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(224, 86, 121, .16), transparent 70%);
    top: -200px;
    right: -160px;
    pointer-events: none;
}

.lp-hero::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 154, 74, .13), transparent 70%);
    bottom: -130px;
    left: -110px;
    pointer-events: none;
}

.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.1rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.08;
    color: #1a1a1a;
}

.hero-headline em {
    color: var(--cor-principal);
    font-style: normal;
}

.hero-glass {
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(224, 86, 121, .15);
    border-radius: var(--radius);
    box-shadow: var(--sombra-media);
}

/* --- STATS STRIP --- */
.stats-strip {
    background: var(--cor-principal);
    color: #fff;
    padding: 1.8rem 0;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.stat-lbl {
    font-size: .82rem;
    opacity: .88;
    margin-top: .25rem;
}

/* --- SEÇÕES --- */
.lp-section { padding: 5rem 0; }
.lp-section-alt { background: rgba(212, 154, 74, 0.06); }
.lp-section-clara { background: var(--cor-clara); }

/* --- ÍCONE DE FEATURE --- */
.feat-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--cor-principal-light);
    color: var(--cor-principal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: background .2s, color .2s;
}

.feat-icon.gold {
    background: var(--cor-secundaria-light);
    color: var(--cor-secundaria);
}

/* --- CARD DE FEATURE --- */
.feat-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid rgba(224, 86, 121, .10);
    box-shadow: var(--sombra-leve);
    transition: transform .25s, box-shadow .25s;
    height: 100%;
}

.feat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-media);
}

/* --- PRICING --- */
.plan-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid rgba(224, 86, 121, .15);
    box-shadow: var(--sombra-leve);
    transition: transform .25s, box-shadow .25s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.plan-card:hover { transform: translateY(-4px); }

.plan-card.destaque {
    border: 2px solid var(--cor-principal);
    box-shadow: 0 20px 50px rgba(224, 86, 121, .20);
    transform: scale(1.03);
    position: relative;
}

.plan-card.destaque:hover { transform: scale(1.03) translateY(-4px); }

.plan-badge {
    background: var(--cor-principal);
    color: #fff;
    font-size: .73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: .22rem .75rem;
    border-radius: 999px;
}

.plan-badge.gold { background: var(--cor-secundaria); }

.plan-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.plan-period { font-size: .85rem; color: #888; }

.plan-item {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    font-size: .92rem;
    margin-bottom: .5rem;
}

.plan-item .bi-check-circle-fill { color: var(--cor-principal); flex-shrink: 0; margin-top: .15rem; }
.plan-item .bi-x-circle { color: #ccc; flex-shrink: 0; margin-top: .15rem; }

/* --- DEPOIMENTOS --- */
.test-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid rgba(224, 86, 121, .10);
    box-shadow: var(--sombra-leve);
    height: 100%;
}

.test-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--cor-principal);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.stars { color: var(--cor-secundaria); font-size: 1rem; letter-spacing: 1px; }

.quote-impacto {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-style: italic;
    color: var(--cor-principal);
    line-height: 1.35;
}

/* --- FAQ --- */
.lp-accordion .accordion-item {
    border: 1px solid rgba(224, 86, 121, .15);
    border-radius: var(--radius) !important;
    margin-bottom: .5rem;
    overflow: hidden;
}

.lp-accordion .accordion-button {
    font-weight: 700;
    font-size: .95rem;
    background: #fff;
    color: var(--cor-texto);
    border-radius: var(--radius) !important;
}

.lp-accordion .accordion-button:not(.collapsed) {
    background: var(--cor-principal-light);
    color: var(--cor-principal);
    box-shadow: none;
}

.lp-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E05679'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* --- CTA FINAL --- */
.lp-cta {
    background: linear-gradient(120deg, var(--cor-principal) 0%, #c03461 100%);
    color: #fff;
    padding: 5.5rem 0;
    position: relative;
    overflow: hidden;
}

.lp-cta::before {
    content: '';
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    top: -180px;
    right: -100px;
    pointer-events: none;
}

.lp-cta::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    bottom: -120px;
    left: -60px;
    pointer-events: none;
}

.lp-cta .lp-title { color: #fff; }

/* --- FOOTER --- */
.lp-footer {
    background: #1a1a2e;
    color: rgba(255, 255, 255, .70);
    padding: 3.5rem 0 1.5rem;
}

.lp-footer .lp-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--cor-principal);
}

.lp-footer a {
    color: rgba(255, 255, 255, .60);
    text-decoration: none;
    font-size: .9rem;
    transition: color .2s;
}

.lp-footer a:hover { color: var(--cor-principal); }
.lp-footer h5 { color: rgba(255, 255, 255, .90); }
.lp-footer hr { border-color: rgba(255, 255, 255, .10); }

/* --- ANIMAÇÕES DE SCROLL --- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .62s ease, transform .62s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .18s; }
.reveal.d3 { transition-delay: .28s; }
.reveal.d4 { transition-delay: .38s; }
.reveal.d5 { transition-delay: .48s; }

/* --- RESPONSIVO --- */
@media (max-width: 991px) {
    .lp-hero { padding: 3rem 0 2.5rem; }
    .lp-cta { padding: 3.5rem 0; }
}

@media (max-width: 767px) {
    .plan-card.destaque { transform: none; }
    .plan-card.destaque:hover { transform: translateY(-4px); }
    .stat-num { font-size: 1.6rem; }
}
