/* RESET & TOKENS */
:root {
    --primary: #f72585; /* Vibrant Pink */
    --primary-dark: #b5179e;
    --secondary: #7209b7; /* Purple */
    --accent: #ffd166; /* Gold/Yellow */
    --accent-dark: #ffb703;
    --dark: #121212;
    --text: #2b2b2b;
    --light-text: #6c757d;
    --light: #f8f9fa;
    --white: #ffffff;
    --success: #06d6a0;
    --danger: #ef233c;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(247, 37, 133, 0.5);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* UTILITIES */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.container-narrow { max-width: 900px; }
.container-small { max-width: 700px; }

.text-center { text-align: center; }
.text-white { color: var(--white); }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.bg-light { background-color: var(--light); }

h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    color: var(--dark);
}

h1 span, h2 span {
    color: var(--primary);
}

/* TOP BAR */
.top-bar {
    background: var(--danger);
    color: var(--white);
    text-align: center;
    padding: 10px 15px;
    font-weight: 600;
    font-size: 0.95rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    animation: pulse-bg 2s infinite;
}

@keyframes pulse-bg {
    0% { background: #ef233c; }
    50% { background: #d90429; }
    100% { background: #ef233c; }
}

nav.navbar {
    padding: 20px 0;
    margin-top: 40px; /* Space for top bar */
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 40px;
    z-index: 90;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.logo-icon {
    color: var(--primary);
}

.logo span {
    color: var(--dark);
    -webkit-text-fill-color: var(--dark);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(247, 37, 133, 0.7);
}

.btn-secondary {
    background: var(--dark);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-white:hover {
    transform: translateY(-3px);
    color: var(--secondary);
}

.btn-large {
    width: 100%;
    max-width: 450px;
    padding: 20px 32px;
    font-size: 1.2rem;
    border-radius: 16px;
}

.pulse-btn {
    animation: pulse-shadow 2s infinite;
}

@keyframes pulse-shadow {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(247, 37, 133, 0.7); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 15px rgba(247, 37, 133, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(247, 37, 133, 0); }
}

/* HERO SECTION */
.hero {
    padding: 60px 0 80px;
    background: linear-gradient(to bottom right, #fff0f5, #f8f9fa);
    overflow: hidden;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(247, 37, 133, 0.1);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.badge-yellow {
    background: var(--accent);
    color: var(--dark);
}

.hero h1 {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.subheadline {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 30px;
}

.hero-bullets {
    margin-bottom: 30px;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--dark);
}

.hero-bullets i {
    color: var(--success);
}

.secure-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--light-text);
}

.secure-text i {
    width: 16px;
    height: 16px;
}

.mockup-container {
    position: relative;
    padding: 20px;
}

.mockup-img {
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(114, 9, 183, 0.15);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.mockup-container:hover .mockup-img {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.floating-element {
    position: absolute;
    background: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    color: var(--secondary);
    animation: float 4s ease-in-out infinite;
}

.el-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.el-2 {
    bottom: 20%;
    left: -20px;
    background: var(--primary);
    color: var(--white);
    animation-delay: 2s;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* SECTIONS PADDING & NEW SECTIONS */
section {
    padding: 80px 0;
}

.explanatory {
    padding: 80px 0;
    font-size: 1.15rem;
    line-height: 1.8;
}

.explanatory p {
    margin-bottom: 20px;
    color: var(--light-text);
}

.explanatory strong {
    color: var(--dark);
    font-weight: 700;
}

.scarcity-section {
    padding: 60px 0;
    background: #fff0f5;
    text-align: center;
    border-bottom: 2px dashed rgba(247, 37, 133, 0.3);
}

.scarcity-section h2 {
    font-size: 2rem;
    color: var(--danger);
    margin-bottom: 15px;
}

/* GALLERY/CAROUSEL */
.gallery-section {
    background: var(--white);
    overflow: hidden;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-text);
    margin-top: 10px;
}

.carousel-container {
    margin-top: 40px;
    padding-bottom: 20px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 50vw 0 20px; /* Offset for alignment */
    scroll-behavior: smooth;
    -ms-overflow-style: none; /* IE/Edge */
    scrollbar-width: none; /* Firefox */
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    flex: 0 0 300px;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-md);
    scroll-snap-align: center;
    border: 3px solid var(--primary);
    box-shadow: 0 5px 25px rgba(247, 37, 133, 0.4);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.carousel-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 35px rgba(247, 37, 133, 0.6);
}

.gallery-section {
    background: linear-gradient(to bottom, #ffffff, #fff0f5);
    overflow: hidden;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--light);
    color: var(--dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.nav-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

/* GRID LAYOUTS */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* PERFECT FOR YOU */
.perfect-card {
    background: var(--light);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s, box-shadow 0.3s;
}

.perfect-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(247, 37, 133, 0.2);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.perfect-card h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

/* BENEFITS */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-item {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-item i {
    width: 48px;
    height: 48px;
    color: var(--primary);
    margin-bottom: 15px;
}

.benefit-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.benefit-item p {
    color: var(--light-text);
    font-size: 0.95rem;
}

/* WHAT YOU GET */
.layout-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.flex-image, .flex-content {
    flex: 1;
}

.rounded-img {
    border-radius: var(--radius-lg);
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.check-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.check-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--success);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-list strong {
    font-size: 1.2rem;
    color: var(--dark);
    display: block;
    margin-bottom: 5px;
}

.check-list p {
    color: var(--light-text);
}

/* BONUS SECTION */
.bonus-section {
    background: linear-gradient(135deg, var(--secondary), var(--primary-dark));
    color: var(--white);
}

.bonus-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 30px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: transform 0.3s;
}

.bonus-card:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.15);
}

.bonus-icon {
    width: 70px;
    height: 70px;
    background: var(--accent);
    color: var(--dark);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bonus-icon i {
    width: 35px; height: 35px;
}

.bonus-text h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--accent);
}

.bonus-text p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.bonus-text .value {
    display: inline-block;
    background: rgba(0,0,0,0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.bonus-text .value strong {
    color: #06d6a0; /* green for pure free */
    font-size: 1.1rem;
}

/* REVIEWS */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.stars {
    color: var(--accent-dark);
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text);
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.reviewer .info strong {
    display: block;
    color: var(--dark);
}

.reviewer .info span {
    font-size: 0.85rem;
    color: var(--light-text);
}

/* OFFER SECTION */
.offer {
    background: var(--white);
}

.offer-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 50px;
    text-align: center;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    position: relative;
}

.scarcity-alert {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--danger);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    animation: pulse-bg 2s infinite;
}

.scarcity-alert i { width: 18px; height: 18px; }

.price-container {
    margin: 30px 0;
    background: var(--light);
    padding: 30px;
    border-radius: var(--radius-md);
}

.price-old {
    font-size: 1.2rem;
    color: var(--light-text);
}

.price-new {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin: 10px 0;
}

.price-new span {
    font-size: 2rem;
    vertical-align: super;
}

.price-details {
    font-weight: 500;
    color: var(--dark);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.time-box {
    background: var(--dark);
    color: var(--white);
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    min-width: 70px;
}

.time-box span {
    font-size: 2rem;
    line-height: 1;
}

.payment-methods p {
    font-size: 0.9rem;
    color: var(--success);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.cards-icons {
    font-size: 2rem;
    margin-top: 10px;
}

/* FAQ */
.faq {
    background: var(--light);
}

.accordion-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Outfit', sans-serif;
}

.accordion-header i {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-header.active + .accordion-content {
    padding: 0 20px 20px;
    max-height: 200px;
}

/* CTA FINAL */
.cta-final {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 100px 0;
}

.cta-final h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 15px;
}

.cta-final p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* FOOTER */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 40px 0;
}

.small-text {
    font-size: 0.8rem;
    color: var(--light-text);
}

/* ANIMATIONS */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* MEDIA QUERIES - MOBILE FIRST / SUPER RESPONSIVE */

@media (max-width: 991px) {
    .logo { font-size: 1.6rem; }
    .hero h1 { font-size: 2.2rem; }
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-bullets li {
        justify-content: center;
    }
    .flex-image {
        order: 2;
    }
    .layout-flex {
        flex-direction: column;
        text-align: center;
    }
    .check-list li {
        text-align: left;
    }
    .benefits-grid, .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        width: 100%;
    }

    section { padding: 50px 0; }
    .explanatory, .scarcity-section { padding: 50px 0; }

    /* Typography */
    h2 { font-size: 1.8rem; line-height: 1.3; }
    .hero h1 { font-size: 1.9rem; line-height: 1.25; }
    .subheadline { font-size: 1.05rem; }
    .section-subtitle { font-size: 1rem; }

    /* Top Bar */
    .top-bar {
        font-size: 0.85rem;
        padding: 8px 10px;
        line-height: 1.4;
    }
    nav.navbar { top: 40px; margin-top: 40px; padding: 15px 0; }
    .hide-mobile { display: none; }
    
    /* Layouts */
    .benefits-grid { gap: 20px; }
    .benefits-grid, .reviews-grid { grid-template-columns: 1fr; }
    
    .perfect-card, .benefit-item, .review-card, .bonus-card {
        padding: 25px 20px;
    }
    
    .bonus-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .bonus-icon { margin: 0 auto; }
    
    .offer-box {
        padding: 40px 20px;
        border-width: 2px;
    }
    
    .scarcity-alert {
        font-size: 0.8rem;
        padding: 5px 15px;
        top: -15px;
    }
    
    .price-new { font-size: 3rem; }
    
    /* Carousel */
    .carousel-item {
        flex: 0 0 220px;
        height: 310px;
    }
    
    .carousel-track {
        gap: 15px;
        padding: 0 10px;
    }
    
    /* Hero Floating */
    .hero-bullets li {
        font-size: 1rem;
        gap: 8px;
    }
    
    .floating-element {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    .el-1 { top: 5%; right: -10px; }
    .el-2 { bottom: 10%; left: -10px; }
}

@media (max-width: 480px) {
    /* Critical Mobile Adjustments */
    .btn { 
        width: 100%; 
        padding: 18px 20px; 
        font-size: 1.05rem; 
    }
    
    h2 { font-size: 1.7rem; }
    .hero h1 { font-size: 1.7rem; }
    
    .price-new { font-size: 2.8rem; }
    .price-new span { font-size: 1.5rem; }
    
    .cta-final h2 { font-size: 2.2rem; }
    
    .time-box {
        min-width: 60px;
        padding: 8px 10px;
    }
    .time-box span { font-size: 1.6rem; }
    
    .accordion-header {
        font-size: 1.05rem;
        padding: 15px;
    }
    
    footer { padding: 30px 20px; }
}
