/* ==========================================================
   LANDING PAGE — 200 PROJETOS DE PULSEIRAS DE MIÇANGA
   Mobile-First Architecture (Max-width: 420px)
   Paleta: Rosa, Lilás, Branco, Toques Dourados Suaves
   ========================================================== */

:root {
    --primary-pink: #E85D88;
    --primary-pink-hover: #D64673;
    --primary-lilac: #8E6CEF;
    --primary-lilac-dark: #764FD9;
    --soft-pink-bg: #FFF0F5;
    --soft-lilac-bg: #F5F0FF;
    --accent-gold: #D4A373;
    --accent-gold-light: #FFF8EE;
    
    --bg-page-outer: #F7F5F9;
    --bg-container: #FFFFFF;
    
    --text-dark: #231F2D;
    --text-muted: #696277;
    --text-soft: #8D879B;
    
    --border-light: rgba(142, 108, 239, 0.12);
    --border-pink: rgba(232, 93, 136, 0.2);
    
    --shadow-card: 0 10px 30px rgba(142, 108, 239, 0.08);
    --shadow-hover: 0 14px 34px rgba(232, 93, 136, 0.18);
    --shadow-btn: 0 8px 24px rgba(232, 93, 136, 0.35);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-page-outer);
    color: var(--text-dark);
    line-height: 1.5;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

.page-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--bg-page-outer);
    padding: 0;
}

/* ==========================================================
   MOBILE CONTAINER (Regra Global: max-width 420px)
   ========================================================== */
.mobile-container {
    width: 100%;
    max-width: 420px;
    background-color: var(--bg-container);
    min-height: 100vh;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* Seções e espaçamentos verticais */
.section {
    padding: 36px 20px;
    position: relative;
}

.section:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(142, 108, 239, 0.1), transparent);
}

/* Badges e Selos de Seção */
.tag-badge, .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--soft-pink-bg), var(--soft-lilac-bg));
    color: var(--primary-pink);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid var(--border-pink);
    margin-bottom: 16px;
}

.section-badge.gold {
    background: var(--accent-gold-light);
    color: #B57C3E;
    border-color: rgba(212, 163, 115, 0.3);
}

/* Títulos das Seções */
.section-title {
    font-family: 'Quicksand', 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.25;
    margin-bottom: 22px;
}

/* ==========================================================
   DOBRA 1 — HERO
   ========================================================== */
.hero-section {
    padding: 40px 20px 32px;
    text-align: center;
    background: radial-gradient(100% 60% at 50% 0%, #FFF5F9 0%, #FFFFFF 100%);
}

.headline {
    font-family: 'Quicksand', 'Plus Jakarta Sans', sans-serif;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    color: #1F1728;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.subheadline {
    font-size: 15px;
    line-height: 1.55;
    color: var(--text-muted);
    margin-bottom: 24px;
    padding: 0 4px;
}

/* ==========================================================
   BOTÃO CTA PRINCIPAL
   ========================================================== */
.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(135deg, #FF6093 0%, #E83F78 50%, #8E6CEF 100%);
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(232, 63, 120, 0.36);
    transition: all 0.25s ease;
    margin-bottom: 24px;
    text-align: center;
}

.cta-button:hover, .cta-button:active {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 14px 30px rgba(232, 63, 120, 0.45);
}

.cta-arrow {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(4px);
}

.secondary-cta {
    margin-top: 20px;
    margin-bottom: 0;
}

/* Animação suave de pulso para botões em foco */
.pulse {
    animation: pulseGlow 2.4s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(232, 63, 120, 0.45);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(232, 63, 120, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(232, 63, 120, 0);
    }
}

/* ==========================================================
   PLACEHOLDERS DE IMAGEM
   ========================================================== */
.image-placeholder {
    width: 100%;
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, #FBF8FD 0%, #F5EFF9 100%);
    border: 2px dashed rgba(142, 108, 239, 0.3);
    padding: 24px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: inset 0 2px 8px rgba(142, 108, 239, 0.04);
}

.hero-image {
    min-height: 220px;
}

.deliverable-image {
    min-height: 200px;
    margin-top: 20px;
}

.social-proof-image {
    min-height: 180px;
    margin-top: 18px;
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.ph-icon {
    font-size: 38px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.08));
}

.ph-tag {
    font-size: 13px;
    line-height: 1.45;
    color: var(--primary-lilac-dark);
    font-weight: 600;
    max-width: 320px;
    background: rgba(255, 255, 255, 0.85);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(142, 108, 239, 0.15);
}

/* ==========================================================
   DOBRA 2 — O QUE VOCÊ RECEBE
   ========================================================== */
.deliverable-section {
    text-align: center;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    margin-bottom: 22px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #FFFFFF;
    border: 1px solid rgba(142, 108, 239, 0.14);
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(142, 108, 239, 0.04);
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--soft-pink-bg);
    color: var(--primary-pink);
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
    border: 1px solid var(--border-pink);
}

.check-icon.premium {
    background: #EFE9FF;
    color: var(--primary-lilac-dark);
    border-color: rgba(142, 108, 239, 0.3);
}

.feature-text {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-dark);
}

.deliverable-callout {
    font-family: 'Quicksand', 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-pink-hover);
    background: linear-gradient(135deg, #FFF0F5, #FBF3FF);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary-pink);
    margin-bottom: 18px;
    text-align: center;
}

/* ==========================================================
   DOBRA 3 — PROVA SOCIAL
   ========================================================== */
.social-proof-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #FAF8FC 100%);
    text-align: center;
}

.editorial-card {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    padding: 24px 18px;
    box-shadow: var(--shadow-card);
    text-align: left;
}

.statement-lead {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 6px;
}

.statement-core {
    font-family: 'Quicksand', 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.35;
    margin-bottom: 16px;
}

.divider-line {
    height: 1px;
    background: linear-gradient(90deg, var(--primary-pink), var(--primary-lilac), transparent);
    opacity: 0.3;
    margin-bottom: 16px;
}

.research-highlight {
    font-size: 14px;
    line-height: 1.5;
    color: #4A3E56;
    background: #F8F5FC;
    padding: 12px 14px;
    border-radius: 10px;
    border-left: 3px solid var(--primary-lilac);
    font-weight: 600;
}

/* ==========================================================
   DOBRA 4 — BÔNUS
   ========================================================== */
.bonus-section {
    text-align: center;
}

.bonus-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.bonus-card {
    background: #FFFFFF;
    border: 1px solid rgba(142, 108, 239, 0.16);
    border-radius: var(--radius-md);
    padding: 18px;
    text-align: left;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.bonus-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.bonus-num {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: var(--primary-lilac);
    background: var(--soft-lilac-bg);
    padding: 4px 10px;
    border-radius: 50px;
}

.bonus-tag {
    font-size: 11px;
    font-weight: 800;
    color: #0A8754;
    background: #E6F7F0;
    padding: 4px 10px;
    border-radius: 50px;
}

.bonus-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.3;
}

.bonus-price-tag {
    font-size: 13.5px;
    font-weight: 700;
    color: #9C5123;
    background: #FFF6EE;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.bonus-mini-image {
    min-height: 100px;
    padding: 14px;
}

.placeholder-content-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}

.ph-icon-sm {
    font-size: 24px;
}

.ph-tag-sm {
    font-size: 11.5px;
    color: var(--primary-lilac-dark);
    font-weight: 600;
}

/* ==========================================================
   DOBRA 5 — OFERTA (CARDS DE PLANOS)
   ========================================================== */
.plans-section {
    text-align: center;
    background: linear-gradient(180deg, #FFFFFF 0%, #FDF9FC 100%);
}

.plan-card {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    margin-bottom: 24px;
    text-align: left;
    position: relative;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.basic-plan {
    border-color: rgba(142, 108, 239, 0.18);
}

.premium-plan {
    border: 2px solid var(--primary-pink);
    box-shadow: 0 14px 40px rgba(232, 93, 136, 0.18);
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF9FB 100%);
}

.featured-ribbon {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF4580, #E83F78);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 50px;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 12px rgba(232, 63, 120, 0.35);
    white-space: nowrap;
}

.plan-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.plan-badge.premium {
    color: var(--primary-pink);
    font-weight: 800;
}

.plan-name {
    font-family: 'Quicksand', 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.plan-name.premium-color {
    color: #B51B53;
}

.plan-main-item {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

.highlight-item {
    color: var(--primary-lilac-dark);
    font-weight: 700;
}

.plan-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
    margin: 16px 0;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 22px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-dark);
}

.bonus-item-plan {
    color: var(--primary-pink-hover) !important;
    font-weight: 700 !important;
}

.plus-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #FFF0F5;
    color: var(--primary-pink);
    font-size: 11px;
    font-weight: 800;
}

/* Preços */
.price-container {
    text-align: center;
    background: #F9F7FB;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 18px;
}

.price-container.premium-bg {
    background: linear-gradient(135deg, #FFF3F7 0%, #F8F3FF 100%);
    border: 1px dashed rgba(232, 93, 136, 0.3);
}

.price-original {
    font-size: 14px;
    color: var(--text-soft);
    text-decoration: line-through;
    margin-bottom: 2px;
}

.price-current {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.price-highlight {
    font-size: 26px;
    font-weight: 800;
    color: #1F1728;
    display: inline-block;
    margin-left: 4px;
}

.price-highlight.large {
    font-size: 32px;
    color: #D61F62;
}

.plan-cta-btn {
    margin-bottom: 12px;
}

.plan-cta-btn.secondary {
    background: linear-gradient(135deg, #8E6CEF, #764FD9);
    box-shadow: 0 8px 20px rgba(142, 108, 239, 0.35);
}

.plan-cta-btn.secondary:hover {
    box-shadow: 0 12px 26px rgba(142, 108, 239, 0.45);
}

.security-pills {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 11.5px;
    color: var(--text-muted);
    font-weight: 600;
}

/* ==========================================================
   DOBRA 6 — GARANTIA
   ========================================================== */
.guarantee-section {
    text-align: center;
}

.guarantee-card {
    background: linear-gradient(180deg, #FAF8FF 0%, #FFFFFF 100%);
    border: 1px solid rgba(142, 108, 239, 0.2);
    border-radius: var(--radius-md);
    padding: 28px 18px;
    box-shadow: var(--shadow-card);
}

.guarantee-seal {
    min-height: 90px;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.8);
}

.ph-icon-shield {
    font-size: 32px;
}

.guarantee-title {
    font-family: 'Quicksand', 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.2px;
}

.guarantee-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.badge-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid rgba(142, 108, 239, 0.15);
    padding: 10px 16px;
    border-radius: 10px;
}

.badge-item.premium-badge {
    background: #FFF5F8;
    border-color: rgba(232, 93, 136, 0.3);
}

.badge-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.badge-val {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-pink);
}

.guarantee-text {
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-muted);
}

/* ==========================================================
   DOBRA 7 — FAQ (ACCORDION)
   ========================================================== */
.faq-section {
    text-align: center;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    margin-bottom: 24px;
}

.accordion-item {
    background: #FFFFFF;
    border: 1px solid rgba(142, 108, 239, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.accordion-item.active {
    border-color: var(--primary-lilac);
    box-shadow: 0 6px 16px rgba(142, 108, 239, 0.08);
}

.accordion-header {
    width: 100%;
    padding: 16px 18px;
    background: none;
    border: none;
    text-align: left;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 12px;
    font-family: inherit;
    line-height: 1.35;
}

.accordion-icon {
    font-size: 20px;
    font-weight: 400;
    color: var(--primary-lilac);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    color: var(--primary-pink);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    padding: 0 18px;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding-bottom: 16px;
}

.accordion-content p {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--text-muted);
}

.faq-footer-cta {
    margin-top: 10px;
}

/* ==========================================================
   RODAPÉ
   ========================================================== */
.footer {
    padding: 28px 20px;
    text-align: center;
    background: #FAF8FB;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.copyright {
    font-size: 12px;
    color: var(--text-soft);
    margin-bottom: 4px;
}

.footer-note {
    font-size: 11.5px;
    color: var(--text-muted);
    font-weight: 600;
}

/* ==========================================================
   RESPONSIVIDADE (Telas menores)
   ========================================================== */
@media (max-width: 360px) {
    .section {
        padding: 28px 16px;
    }
    
    .headline {
        font-size: 23px;
    }
    
    .cta-button {
        font-size: 15px;
        padding: 15px 16px;
    }
    
    .price-highlight.large {
        font-size: 28px;
    }
}
