:root {
    --bg-dark: #FFFFFF;
    --neon-pink: #FF1493;
    --neon-gold: #FF4B8B;
    --neon-cyan: #FF69B4;
    --text-main: #333333;
    --text-muted: #777777;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 20, 147, 0.15);
    --glass-blur: blur(16px);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body.dark-mode {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    /* Soft warm ambient layer across body */
    background-image: radial-gradient(circle at 15% 10%, rgba(255, 105, 180, 0.08) 0%, transparent 50%),
                      radial-gradient(circle at 85% 90%, rgba(255, 20, 147, 0.06) 0%, transparent 50%);
    background-attachment: fixed;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.section {
    padding: 4rem 0;
    position: relative;
    z-index: 2;
}

.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.img-fluid { max-width: 100%; height: auto; display: block; }
.mx-auto { margin-right: auto; margin-left: auto; }

/* typography fx */
.neon-text {
    color: var(--neon-pink);
    font-weight: bold;
}

.neon-text-gold {
    color: var(--neon-gold);
    font-weight: bold;
}

/* Glassmorphism */
.glass-panel, .glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.glass-card {
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Grids */
.grid {
    display: grid;
    gap: 1.5rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #FF1493, #FF69B4);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
    transition: all 0.3s ease;
    text-wrap: balance;
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
    transform: scale(1.05);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3); }
    50% { transform: scale(1.02); box-shadow: 0 6px 25px rgba(255, 20, 147, 0.5); }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3); }
}

.pulse-bg {
    animation: pulse-border 3s infinite;
}

@keyframes pulse-border {
    0% { border-color: rgba(255, 20, 147, 0.2); }
    50% { border-color: rgba(255, 20, 147, 0.5); box-shadow: 0 0 15px rgba(255, 20, 147, 0.1) inset; }
    100% { border-color: rgba(255, 20, 147, 0.2); }
}

.icon-small {
    width: 60px;
    margin: 0 auto 1rem;
    display: block;
}

.icon-arrow {
    width: 50px;
    margin: 0 auto 1rem;
    display: block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(10px); }
    60% { transform: translateY(5px); }
}

/* Header / Hero */
.hero {
    text-align: center;
    padding-top: 5rem;
}

.hero .logo {
    max-width: 250px;
    margin-bottom: 2rem;
}

.hero .headline {
    font-size: 2.2rem;
    text-wrap: balance;
}

.benefit-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem auto;
    font-weight: 500;
    max-width: fit-content;
}

.benefit-list i {
    color: var(--neon-gold);
    font-size: 1.2rem;
    vertical-align: middle;
}

.hero-image-wrapper {
    position: relative;
    max-width: 600px;
    margin: 3rem auto;
}

.hero-image {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--neon-pink);
    filter: blur(100px);
    opacity: 0.15;
    z-index: 1;
}

.glow-effect.danger {
    background: var(--neon-gold);
    opacity: 0.15;
}

/* Proofs */
.proofs-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.glass-image {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

/* Carousel */
.carousel-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    margin-top: 2rem;
    scrollbar-width: none; /* Firefox */
}
.carousel-container::-webkit-scrollbar { display: none; } /* Chrome */

.carousel-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
}

.carousel-img {
    scroll-snap-align: center;
    width: 300px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

/* Steps */
.steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step-card {
    text-align: center;
}

.icon-wrapper {
    font-size: 3rem;
    color: var(--neon-pink);
    margin-bottom: 1rem;
}

/* Deliverables */
.deliverables-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.showcase {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.showcase.reverse {
    flex-direction: row-reverse;
}

.showcase img {
    flex: 1;
    max-width: 300px;
    border-radius: 12px;
}

.showcase .text {
    flex: 1;
}

/* Offers / Pricing */
.stack-list {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.stack-list li {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.stack-list li span {
    color: var(--text-muted);
    float: right;
}

.pricing-total {
    border-top: 1px solid var(--glass-border);
    padding-top: 1rem;
    font-size: 1.1rem;
}

.pricing-box {
    margin: 2rem auto;
    max-width: 600px;
    border-radius: 16px;
    padding: 3px;
    background: linear-gradient(135deg, var(--neon-gold), #FF1493);
}

.pricing-inner {
    border: none;
    background: rgba(255, 255, 255, 0.9);
}

.price-mega {
    font-size: 3rem;
    color: var(--neon-gold);
    display: block;
}

.highlight-info {
    font-size: 0.9rem;
    color: var(--neon-cyan);
    margin-bottom: 2rem;
}

.secure-info {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
}

/* Bonues */
.bonuses-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.bonus-card {
    text-align: center;
}
.bonus-card img {
    border-radius: 12px;
    width: 100%;
    margin-bottom: 1rem;
}

/* 2 Choices */
.choices-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
}

.choice-card {
    text-align: center;
    border-width: 2px;
}

.choice-card img {
    width: 100px;
    margin-bottom: 1rem;
}

.danger-bordered { border-color: rgba(255, 0, 0, 0.3); }
.success-bordered { border-color: rgba(0, 255, 100, 0.5); }
.versus-text { margin: 1rem 0; color: var(--text-muted); }

/* Access */
.access-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.access-item img {
    width: 60px;
    margin-bottom: 1rem;
}

/* Author */
.flex-row {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.author-img {
    width: 300px;
    border-radius: 16px;
}

/* Checklist */
.checklist {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}
.checklist li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}
.checklist i {
    color: var(--neon-gold);
    margin-right: 0.5rem;
    font-size: 1.5rem;
    vertical-align: middle;
}
.floating-cookie {
    margin: 3rem auto 0;
    display: block;
    max-width: 90%;
}

/* FAQ Accordion */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.accordion-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    margin: 0;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--text-muted);
}

.accordion-item.active {
    border-color: var(--neon-pink);
    background: rgba(255, 20, 147, 0.05);
}

.accordion-item.active .accordion-content {
    padding-top: 1rem;
    max-height: 200px;
}
.accordion-item.active .bx-plus {
    transform: rotate(45deg);
}


/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .section { padding: 2.5rem 0; }
    .headline { font-size: 1.6rem; }
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1.2rem; }
    
    .glass-panel, .glass-card {
        padding: 1.5rem 1rem;
    }
    
    .grid { gap: 1rem; }
    
    .benefit-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        padding: 1.5rem;
    }
    
    .showcase {
        flex-direction: column !important;
        text-align: center;
        gap: 1.5rem;
    }
    
    .flex-row {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .author-img, .carousel-img, .showcase img {
        width: 100%;
        max-width: 300px;
    }
    
    .price-mega { font-size: 2.2rem; }
    .btn-primary { 
        padding: 1rem 1rem; 
        width: 100%; 
        font-size: 1rem;
    }
    
    .icon-wrapper { font-size: 2.5rem; }
    .choices-grid { max-width: 100%; }
    
    .accordion-item { padding: 1rem; }
    .accordion-title { font-size: 1rem; }
}

footer {
    padding: 3rem 0;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}
.disclaimer { font-size: 0.75rem; opacity: 0.7; }

/* Geo-location Bar */
#container-cidade {
    padding: 0.8rem;
    width: 100%;
    background-color: var(--neon-pink);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    font-family: var(--font-body);
    box-shadow: 0 2px 10px rgba(255, 20, 147, 0.2);
}

/* Video Container */
.video-container {
    max-width: 800px;
    margin: 1rem auto 2rem;
    border-radius: 16px;
    overflow: hidden;
    padding: 8px;
    background: var(--glass-bg);
}

@media (max-width: 768px) {
    #container-cidade {
        font-size: 12px;
        padding: 0.6rem;
    }
    .video-container {
        padding: 4px;
        border-radius: 12px;
    }
}

/* Scarcity Elements */
.scarcity-bar {
    background: var(--neon-pink);
    color: white;
    text-align: center;
    padding: 0.8rem;
    font-weight: bold;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(255, 20, 147, 0.3);
}

.timer-display {
    background: rgba(0,0,0,0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-family: monospace;
    letter-spacing: 1px;
    margin: 0 5px;
}

.stock-warning {
    color: var(--neon-pink);
    font-weight: 700;
    margin: 1.5rem 0;
    font-size: 1.1rem;
    animation: flash 2s infinite;
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Sales Popup Notification */
.sales-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.2);
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1000;
    transform: translateY(150px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.sales-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.popup-icon {
    background: var(--neon-pink);
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
}

.popup-content p {
    margin: 0;
    line-height: 1.2;
}

.popup-title {
    font-size: 0.95rem;
    color: var(--text-main);
}

.popup-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.popup-time {
    font-size: 0.7rem;
    color: var(--neon-gold);
    font-weight: bold;
}

@media (max-width: 768px) {
    .sales-popup {
        bottom: 15px;
        left: 15px;
        right: 15px;
        border-radius: 12px;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #FFF;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
    }
}

/* Pricing Plans Selection */
.plans-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: stretch;
}

.plan-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    padding: 2.5rem 2rem;
    position: relative;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--neon-pink);
    margin-bottom: 1rem;
}

.plan-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    min-height: 3em;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
    flex-grow: 1;
}

.plan-features li {
    padding: 0.6rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.plan-features i {
    color: var(--neon-gold);
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.plan-card.featured {
    transform: scale(1.05);
    background: #FFF;
    box-shadow: 0 20px 40px rgba(255, 20, 147, 0.15);
    border: 2px solid var(--neon-pink);
    z-index: 2;
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-gold);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-full {
    width: 100%;
    display: block;
    padding: 1.2rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
}

.btn-secondary {
    background: #FFF0F5;
    color: var(--neon-pink);
    border: 2px solid var(--neon-pink);
}

.btn-secondary:hover {
    background: var(--neon-pink);
    color: #FFF;
}

.promo-text {
    font-size: 0.75rem;
    color: var(--neon-pink);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Urgency & Scarcity */
.scarcity-text {
    font-size: 1rem;
    color: var(--neon-pink);
    animation: scarcity-pulse 2s infinite ease-in-out;
}

.scarcity-mini {
    font-size: 0.85rem;
    color: #e74c3c;
    font-weight: 600;
}

@keyframes scarcity-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.02); }
}

/* Testimonials Carousel */
.carousel-viewport {
    width: 100%;
    overflow: hidden;
    margin: 2rem 0;
    position: relative;
    border-radius: 16px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    object-fit: cover;
    padding: 0 10px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--glass-border);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--neon-pink);
    transform: scale(1.2);
}

@media (min-width: 992px) {
    .carousel-slide {
        flex: 0 0 33.333%;
    }
}

@media (max-width: 768px) {
    .plan-card.featured {
        transform: scale(1);
        margin-top: 2rem;
    }
    .plans-grid {
        gap: 1.5rem;
    }
    .plan-card {
        min-width: 100%;
    }
}
