:root {
    --primary: #E9125E; /* Stronger/Vibrant Pink */
    --primary-dark: #B02E55;
    --secondary: #FFD700; /* Gold */
    --text-dark: #1A1A1A;
    --text-light: #555;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --green: #27AE60;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Social Proof Notification */
.social-proof {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    background: white;
    padding: 12px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 1000;
    border-left: 4px solid var(--green);
    transform: translateY(-150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-proof.show { transform: translateY(0); }

.sp-icon {
    width: 24px;
    height: 24px;
    background: var(--green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.sp-content { font-size: 13px; }
.sp-content .highlight { font-weight: bold; color: var(--text-dark); }
.sp-content small { display: block; color: #888; margin-top: 2px; }

/* Top Bar */
.top-bar {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero */
.hero { padding: 40px 0 20px; text-align: center; }

.main-title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 19px; /* Smaller for better mobile fit */
    line-height: 1.5;
    margin-bottom: 25px;
    color: #000;
    padding: 0 10px;
}

.d-block { display: block; }

.main-title .bold {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.pink { color: var(--primary); }

.hero-image { margin-bottom: 25px; }

.hero-image img {
    width: 100%;
    max-width: 240px;
    height: auto;
    display: block;
    border-radius: 15px;
    margin: 0 auto;
}

.hero-sub {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 30px;
    padding: 0 10px;
}

/* Veja os modelos */
.models-gallery { padding: 40px 0; text-align: center; background: #fff; }

.gallery-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 30px;
}

.gallery-scroll {
    overflow: hidden;
    padding: 10px 0 20px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.gallery-track {
    display: flex;
    gap: 15px;
    width: max-content;
    animation: scrollGallery 30s linear infinite;
}

@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-220px * 10 - 15px * 10)); }
}

.gallery-item {
    flex: 0 0 220px;
    height: 300px;
    background: #f5f5f5;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Buttons */
.cta-btn {
    display: block;
    width: 100%;
    background: var(--primary);
    color: white;
    text-decoration: none;
    padding: 18px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 18px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(233, 18, 94, 0.4);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.cta-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 60%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(25deg);
    animation: shine 8s infinite;
}

@keyframes shine {
    0% { left: -150%; }
    40% { left: 150%; }
    100% { left: 150%; }
}

.cta-btn:hover { transform: translateY(-3px); }

.cta-wrapper-pink {
    background: var(--primary);
    padding: 20px;
    margin-top: 30px;
    border-radius: 50px;
}

.cta-btn.secondary {
    background: white;
    color: var(--primary);
    box-shadow: none;
}

/* Ticker */
.ticker-wrap { background: #f0f0f0; overflow: hidden; padding: 12px 0; margin: 30px 0 0; }
.ticker { display: flex; white-space: nowrap; animation: ticker 5s linear infinite; }
.ticker-item { padding: 0 20px; font-weight: 700; color: #444; font-size: 14px; }
@keyframes ticker { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-50%, 0, 0); } }

/* What you receive */
.pink-header {
    background: var(--primary);
    color: white;
    padding: 18px;
    text-align: center;
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 40px;
    margin-top: 0;
    text-transform: uppercase;
}

.bundle-mockup img {
    width: 100%;
    max-width: 380px;
    height: auto;
    display: block;
    border-radius: 15px;
    margin: 0 auto 20px;
}

.acesso-badge {
    background: #1E5128;
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    display: table;
    margin: 0 auto 30px;
}

.item-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
    border: 1px solid #f0f0f0;
}

.item-tag {
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 12px;
    display: inline-block;
}

.item-card h3 { font-size: 18px; margin-bottom: 12px; font-weight: 800; }
.item-card p { font-size: 14px; color: var(--text-light); }

.benefit-list { list-style: none; margin-top: 20px; }
.benefit-list li { margin-bottom: 8px; display: flex; align-items: center; gap: 10px; font-size: 14px; }
.benefit-list i { color: var(--primary); font-size: 12px; }

/* Features */
.why-us { padding: 40px 0; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-card .icon-wrap {
    background: #fef1f5;
    color: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 18px;
}

.feature-card h4 { font-size: 14px; margin-bottom: 8px; font-weight: 700; }
.feature-card p { font-size: 11px; color: var(--text-light); line-height: 1.4; }

/* Checklist */
.ideal-for { background: #fafafa; padding: 50px 0; }
.section-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 22px; text-align: center; margin-bottom: 30px; }
.checklist { background: transparent; padding: 0; }
.check-item {
    background: white;
    margin-bottom: 10px;
    border-radius: 10px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}
.check-item i { color: var(--green); font-size: 16px; }

/* Bonus */
.bonus-section { padding: 50px 0; text-align: center; }
.bonus-pre { font-size: 18px; font-weight: 800; color: #222; }
.bonus-title { font-size: 18px; margin-bottom: 20px; color: #444; }
.bonus-badge {
    background: var(--primary);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 40px;
}

.bonus-grid { display: flex; flex-direction: column; gap: 20px; }
.bonus-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: left;
    border: 1px solid #f0f0f0;
}

.bonus-header { background: var(--primary); color: white; padding: 8px; text-align: center; font-weight: 700; font-size: 14px; }
.bonus-img { padding: 15px 15px 0; }
.bonus-img img {
    width: 85%;
    max-width: 220px;
    height: auto;
    display: block;
    border-radius: 10px;
    margin: 0 auto;
}
.bonus-body { padding: 20px; }
.bonus-body h4 { font-size: 16px; margin-bottom: 10px; font-weight: 800; }
.bonus-body p { font-size: 13px; color: var(--text-light); margin-bottom: 15px; }
.bonus-footer { display: flex; justify-content: space-between; align-items: center; }
.old-price-bonus { text-decoration: line-through; color: #999; font-weight: 600; }
.free-badge { background: var(--green); color: white; padding: 5px 12px; border-radius: 50px; font-weight: 800; font-size: 12px; }

/* Pricing */
.pricing { padding: 50px 0; background: white; }
.pricing-title { text-align: center; margin-bottom: 30px; font-size: 24px; font-weight: 800; }
.countdown-wrap { background: #fef1f5; border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 40px; }
.countdown-wrap p { font-size: 12px; font-weight: 800; color: #444; }

.timer { display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 15px; }
.timer-box { background: var(--primary); color: white; width: 65px; height: 65px; border-radius: 10px; display: flex; flex-direction: column; justify-content: center; }
.timer-box span { font-size: 20px; font-weight: 800; }
.timer-box small { font-size: 8px; font-weight: 600; }
.timer-sep { font-size: 20px; font-weight: 800; color: var(--primary); }

.plans { display: flex; flex-direction: column; gap: 40px; }
.plan-card { border: 1.5px solid #eee; border-radius: 20px; padding: 30px 20px; text-align: center; position: relative; }
.plan-card h3 { font-size: 20px; font-weight: 800; }

.warning-pill { background: #FFF9E6; color: #B8860B; padding: 6px 12px; border-radius: 50px; font-size: 11px; font-weight: 700; display: table; margin: 15px auto; }

.plan-mockup img {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
    border-radius: 10px;
    margin: 0 auto 20px;
}

.plan-features { list-style: none; text-align: left; margin: 25px 0; padding-left: 10px; }
.plan-features li { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; font-size: 13px; }
.plan-features i { color: var(--green); font-size: 16px; }

.price-area { margin-bottom: 20px; }
.old-price { display: block; text-decoration: line-through; color: var(--primary); font-weight: 700; font-size: 14px; }
.main-price { font-size: 55px; font-weight: 900; color: #22c55e; line-height: 1; font-family: 'Montserrat', sans-serif; }

.plan-btn { display: block; width: 100%; background: var(--green); color: white; text-decoration: none; padding: 16px; border-radius: 10px; font-weight: 800; font-size: 16px; transition: 0.3s; }
.recommendation-bar { color: var(--primary); font-weight: 800; font-size: 15px; margin-top: 25px; }
.arrow-down { font-size: 28px; color: #e74c3c; margin-top: 10px; }
.last-call { padding: 50px 10px; text-align: center; font-size: 15px; color: #c0392b; font-weight: 700; line-height: 1.4; margin-top: 20px; }

/* Complete Plan Refined */
.complete-plan { border: 4px solid var(--primary); background: white; transform: scale(1.02); }
.featured-tag { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--primary); color: white; padding: 8px 25px; border-radius: 50px; font-weight: 700; font-size: 13px; width: auto; white-space: nowrap; }
.chosen-count { background: #E6F7F0; color: #27AE60; padding: 8px 15px; border-radius: 50px; font-size: 12px; font-weight: 700; display: table; margin: 30px auto 15px; }
.all-bonus { background: #1E5128; color: white; padding: 8px 20px; border-radius: 50px; font-weight: 800; font-size: 13px; display: table; margin: 0 auto 20px; }
.multiplier-tag { background: var(--primary); color: white; padding: 4px 15px; border-radius: 50px; font-size: 11px; font-weight: 700; display: table; margin: 0 auto 15px; }
.save-tag { background: #E6F7F0; color: #27AE60; padding: 5px 12px; border-radius: 50px; font-size: 13px; font-weight: 700; display: inline-block; margin-top: 10px; }
.primary-btn { background: var(--green); box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3); }
.vitalicio { font-size: 11px; font-weight: 700; margin-top: 15px; color: #666; }

/* Testimonials */
.testimonials { padding: 50px 0; background: #fff; }
.testimonial-summary { background: #fef1f5; color: var(--primary); padding: 8px 20px; border-radius: 50px; display: inline-block; font-weight: 700; font-size: 12px; margin-bottom: 20px; }
.dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; display: inline-block; margin-right: 8px; }
.t-card { background: white; border-radius: 20px; padding: 25px; box-shadow: var(--shadow); margin-bottom: 20px; border: 1px solid #f9f9f9; }
.t-header { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.t-avatar { width: 45px; height: 45px; border-radius: 50%; overflow: hidden; background: #eee; }
.t-avatar img { width: 100%; height: 100%; object-fit: cover; }
.t-info strong { display: block; font-size: 15px; }
.t-info small { color: #888; font-size: 11px; }

/* FAQ */
.faq { padding: 50px 0; background: #fafafa; }
.accordion-item { background: white; border-radius: 12px; margin-bottom: 12px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.03); }
.accordion-header { padding: 18px; font-weight: 700; font-size: 14px; display: flex; justify-content: space-between; cursor: pointer; align-items: center; }
.accordion-header i { font-size: 12px; transition: transform 0.3s; }
.accordion-content { padding: 0 18px 18px; display: none; font-size: 13px; color: #666; }

/* Guarantee */
.guarantee { padding: 60px 0; text-align: center; }
.guarantee-inner { background: white; border-radius: 30px; padding: 40px 20px; box-shadow: var(--shadow); }
.guarantee-seal { width: 100%; max-width: 220px; margin-bottom: 30px; }
.guarantee-inner p { font-size: 14px; color: #444; line-height: 1.6; margin-bottom: 25px; }

.footer { background: #111; color: white; text-align: center; padding: 25px; font-size: 11px; letter-spacing: 0.5px; }

@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.03); } 100% { transform: scale(1); } }
.pulse { animation: pulse 2s infinite; }

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center; /* Center it */
    justify-content: center;
    z-index: 2000;
    padding: 10px;
}

.modal-content {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 360px;
    padding: 20px 15px;
    text-align: center;
    position: relative;
    animation: modalIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    color: #ccc;
    cursor: pointer;
}

.modal-title { font-size: 18px; font-weight: 800; margin-bottom: 5px; color: #1a1a1a; }
.modal-sub { font-size: 12px; color: #666; margin-bottom: 15px; }

.modal-price-box {
    background: #F8F9FA;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.modal-old-price { text-decoration: line-through; color: #e74c3c; font-weight: 700; font-size: 14px; }
.modal-new-price { color: #27AE60; font-size: 26px; font-weight: 900; }

.modal-features {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
    padding: 0 5px;
}

.modal-features li {
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
}

.modal-features i { color: #27AE60; font-size: 14px; }

.modal-btn-primary {
    display: block;
    background: #27AE60;
    color: white;
    text-decoration: none;
    padding: 14px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 10px;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
    transition: transform 0.2s;
}

.modal-btn-primary:hover { transform: scale(1.02); }

.modal-btn-secondary {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 12px;
    border: 1px solid #eee;
    transition: background 0.2s;
}

.modal-btn-secondary:hover { background: #f9f9f9; }
