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

:root {
    --purple: #6B21A8;
    --purple-dark: #4C1D95;
    --purple-light: #A855F7;
    --yellow: #FBBF24;
    --yellow-bright: #F59E0B;
    --green: #16A34A;
    --green-bright: #22C55E;
    --red: #DC2626;
    --white: #ffffff;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-600: #4B5563;
    --gray-800: #1F2937;
    --gray-900: #111827;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-800);
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

.mt-24 { margin-top: 24px; }

/* ── URGENCY BAR ── */
.urgency-bar {
    background: var(--red);
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 12px rgba(220,38,38,0.4);
}
.urgency-bar__text {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.urgency-bar__date {
    font-size: 1rem;
    font-weight: 900;
    color: var(--yellow);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 1px;
}

/* ── HERO ── */
.hero {
    background: linear-gradient(135deg, #1e0533 0%, #2d1065 50%, #1e0533 100%);
    padding: 50px 20px 60px;
    color: #fff;
}
.hero__inner {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}
.hero__text {
    width: 100%;
    max-width: 600px;
    text-align: center;
}
.hero__badge {
    display: inline-block;
    background: var(--yellow);
    color: #1e0533;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 999px;
    margin-bottom: 18px;
}
.hero__title {
    font-size: clamp(1.6rem, 5vw, 2.8rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.hero__title--highlight {
    color: var(--yellow);
    font-size: clamp(2rem, 7vw, 3.8rem);
    display: block;
}
.hero__title--sub {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: rgba(255,255,255,0.85);
    display: block;
}
.hero__lead {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}
.hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 20px 30px;
    margin-bottom: 28px;
    gap: 0;
}
.hero__stat {
    flex: 1;
    text-align: center;
}
.hero__stat strong {
    display: block;
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 4px;
}
.hero__stat span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    margin: 0 20px;
    flex-shrink: 0;
}
.hero__guarantee-note {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    margin-top: 12px;
}
.hero__image {
    width: 100%;
    max-width: 480px;
    text-align: center;
}
.hero__image img {
    width: 100%;
    max-width: 480px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    animation: floatImg 4s ease-in-out infinite;
}
@keyframes floatImg {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ── BUTTONS ── */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 12px;
    padding: 18px 32px;
    width: 100%;
    max-width: 480px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-cta:hover { transform: translateY(-2px); }
.btn-cta:active { transform: translateY(0); }

.btn-cta--hero {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-bright) 100%);
    color: #fff;
    box-shadow: 0 6px 25px rgba(22,163,74,0.5);
    font-size: 1.05rem;
    animation: pulse 2.5s ease-in-out infinite;
}
.btn-cta--green {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-bright) 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(22,163,74,0.4);
}
.btn-cta--buy {
    background: linear-gradient(135deg, #FF6B00 0%, #FF8C00 100%);
    color: #fff;
    box-shadow: 0 6px 25px rgba(255,107,0,0.5);
    font-size: 1.15rem;
    animation: pulse 2.5s ease-in-out infinite;
}
.btn-cta--xl {
    padding: 22px 40px;
    font-size: 1.25rem;
    max-width: 560px;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 6px 25px rgba(255,107,0,0.5); }
    50% { box-shadow: 0 10px 40px rgba(255,107,0,0.8); transform: translateY(-3px); }
}
.btn-cta--hero { animation-name: pulseGreen; }
@keyframes pulseGreen {
    0%, 100% { box-shadow: 0 6px 25px rgba(22,163,74,0.5); }
    50% { box-shadow: 0 10px 40px rgba(22,163,74,0.8); transform: translateY(-3px); }
}

/* ── VSL ── */
.vsl-section {
    background: var(--gray-900);
    padding: 60px 20px;
    text-align: center;
}
.vsl-section__title {
    color: #fff;
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    font-weight: 700;
    margin-bottom: 28px;
}
.vsl-wrapper {
    max-width: 680px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.vsl-video {
    width: 100%;
    display: block;
    background: #000;
}

/* ── SECTION TITLES ── */
.section-title {
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 10px;
    color: var(--gray-900);
}
.section-subtitle {
    text-align: center;
    color: var(--gray-600);
    font-size: 1rem;
    margin-bottom: 40px;
}

/* ── DRIVE SECTION ── */
.drive-section {
    background: var(--gray-900);
    padding: 70px 0 60px;
    overflow: hidden;
}
.drive-section__eyebrow {
    text-align: center;
    color: var(--yellow);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.drive-section__title {
    text-align: center;
    color: #fff;
    font-size: clamp(1.4rem, 4vw, 2.1rem);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 10px;
}
.drive-section__title span {
    color: var(--yellow);
}
.drive-section__sub {
    text-align: center;
    color: rgba(255,255,255,0.55);
    font-size: 0.95rem;
    margin-bottom: 36px;
}

@keyframes driveScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.drive-carousel__wrapper {
    overflow: hidden;
    width: 100%;
    cursor: grab;
    user-select: none;
}
.drive-carousel__wrapper:active { cursor: grabbing; }
.drive-carousel__track {
    display: flex;
    gap: 20px;
    width: max-content;
    padding: 0 10px;
    animation: driveScroll 20s linear infinite;
}
.drive-carousel__wrapper:hover .drive-carousel__track {
    animation-play-state: paused;
}
.drive-carousel__slide {
    flex-shrink: 0;
    width: 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.08);
    background: #fff;
    transition: transform 0.3s;
}
.drive-carousel__slide:hover { transform: scale(1.02); }
.drive-carousel__slide img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: top;
    display: block;
    pointer-events: none;
}

@media (max-width: 600px) {
    .drive-carousel__slide { width: 240px; }
    .drive-carousel__slide img { height: 380px; }
}

/* ── INCLUDED ── */
.included {
    background: var(--gray-50);
    padding: 70px 20px;
}
.included__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.included__card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    border: 1px solid rgba(107,33,168,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}
.included__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(107,33,168,0.15);
}
.included__icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}
.included__card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--purple-dark);
    margin-bottom: 8px;
}
.included__card p {
    font-size: 0.82rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* ── GALLERY CAROUSEL ── */
.gallery {
    background: #fff;
    padding: 70px 0;
    overflow: hidden;
}
.gallery .container { margin-bottom: 0; }
.gallery .section-title, .gallery .section-subtitle { padding: 0 20px; }

@keyframes galleryScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.gallery__carousel-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
    cursor: grab;
    user-select: none;
}
.gallery__carousel-wrapper:active { cursor: grabbing; }
.gallery__carousel-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: galleryScroll 40s linear infinite;
}
.gallery__carousel-wrapper:hover .gallery__carousel-track {
    animation-play-state: paused;
}
.gallery__slide {
    flex-shrink: 0;
    width: 220px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    background: #f9f9f9;
    transition: transform 0.3s;
}
.gallery__slide:hover { transform: scale(1.04); }
.gallery__slide img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* ── TESTIMONIALS ── */
.testimonials {
    background: var(--gray-50);
    padding: 70px 0;
    overflow: hidden;
}
.testimonials .section-title, .testimonials .section-subtitle { padding: 0 20px; }

@keyframes testimonialsScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.testimonials__carousel-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
    cursor: grab;
    user-select: none;
}
.testimonials__carousel-wrapper:active { cursor: grabbing; }
.testimonials__carousel-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: testimonialsScroll 30s linear infinite;
}
.testimonials__carousel-wrapper:hover .testimonials__carousel-track {
    animation-play-state: paused;
}
.testimonials__slide {
    flex-shrink: 0;
    width: 220px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    background: #fff;
}
.testimonials__slide img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: top;
    display: block;
    pointer-events: none;
}

/* ── BONUS SECTION ── */
.bonus-section {
    background: #f0fdf4;
    padding: 70px 20px;
    text-align: center;
}
.bonus-section__title {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    font-weight: 900;
    color: #111;
    margin-bottom: 12px;
}
.bonus-section__de {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 4px;
}
.bonus-section__de s { color: #ef4444; }
.bonus-section__gratis {
    display: inline-block;
    background: #16A34A;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.bonus-section__sub {
    color: #444;
    font-size: 1rem;
    margin-bottom: 36px;
}
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 860px;
    margin: 0 auto;
}
.bonus-card {
    background: #fff;
    border: 2px solid #d1fae5;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(22,163,74,0.12);
}
.bonus-card__icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}
.bonus-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
}
.bonus-card p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
}

/* ── PRICING ── */
.pricing {
    background: linear-gradient(135deg, #1e0533 0%, #2d1065 100%);
    padding: 80px 20px;
    text-align: center;
}
.pricing__title { color: var(--yellow); }
.pricing__subtitle {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    margin-bottom: 40px;
}
.pricing__card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 32px;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.pricing__badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
    color: #1e0533;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 24px;
    border-radius: 999px;
    white-space: nowrap;
}
.pricing__product-img {
    margin-bottom: 20px;
}
.pricing__product-img img {
    max-width: 280px;
    width: 100%;
}
.pricing__name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--purple-dark);
    margin-bottom: 10px;
}
.pricing__desc {
    font-size: 0.88rem;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.6;
}
.pricing__price-block {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
}
.pricing__from {
    display: block;
    font-size: 0.9rem;
    color: #9CA3AF;
    margin-bottom: 8px;
}
.pricing__from s { color: #EF4444; }
.pricing__price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
    color: var(--green);
    margin-bottom: 8px;
}
.pricing__currency {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 6px;
    margin-right: 2px;
}
.pricing__amount {
    font-size: 4rem;
    font-weight: 900;
}
.pricing__cents {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 8px;
}
.pricing__installment {
    display: block;
    font-size: 0.82rem;
    color: var(--gray-600);
}
.pricing__security {
    margin-top: 16px;
}
.pricing__security img {
    max-width: 260px;
    width: 100%;
    opacity: 0.7;
}
.pricing__social {
    font-size: 0.82rem;
    color: #F97316;
    font-weight: 700;
    margin-bottom: 20px;
    background: #fff7ed;
    border-radius: 50px;
    padding: 6px 16px;
    display: inline-block;
}
.pricing__features {
    list-style: none;
    text-align: left;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pricing__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #374151;
}
.pricing__features li i.fa-check {
    color: var(--green);
    font-size: 0.85rem;
    flex-shrink: 0;
}
.pricing__features li.pricing__features__bonus {
    color: #7C3AED;
    font-weight: 600;
}
.pricing__features li.pricing__features__bonus i.fa-gift {
    color: #7C3AED;
    flex-shrink: 0;
}
.pricing__foot {
    font-size: 0.78rem;
    color: #9CA3AF;
    margin: 12px 0 0;
}

/* ── GUARANTEE ── */
.guarantee {
    background: #fff;
    padding: 70px 20px;
}
.guarantee__inner {
    max-width: 740px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    background: var(--gray-50);
    border-radius: 24px;
    padding: 40px;
    border: 2px solid rgba(251,191,36,0.3);
}
.guarantee__badge {
    width: 140px;
    flex-shrink: 0;
}
.guarantee__text h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
}
.guarantee__text p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 10px;
}

/* ── FINAL CTA ── */
.final-cta {
    background: linear-gradient(135deg, #1e0533 0%, #2d1065 100%);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}
.final-cta__title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 900;
    color: var(--yellow);
    margin-bottom: 12px;
}
.final-cta__text {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.final-cta__price {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    display: inline-block;
    padding: 12px 32px;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 28px;
}
.final-cta__price strong {
    color: var(--yellow);
    font-size: 1.4rem;
}
.final-cta__note {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    margin-top: 16px;
}

/* ── FOOTER ── */
.footer {
    background: var(--gray-900);
    padding: 40px 20px;
    text-align: center;
}
.footer__security {
    max-width: 200px;
    width: 100%;
    opacity: 0.6;
    margin-bottom: 16px;
}
.footer__copy {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 6px;
}
.footer__legal {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
    .hero { padding: 40px 16px 50px; }
    .hero__inner { gap: 30px; }
    .hero__stats { padding: 16px 20px; }
    .hero__stat-divider { margin: 0 12px; }
    .btn-cta { padding: 16px 24px; font-size: 0.92rem; }
    .btn-cta--xl { font-size: 1rem; padding: 18px 24px; }
    .pricing__card { padding: 36px 20px; }
    .guarantee__inner { padding: 30px 20px; }
    .gallery__slide { width: 180px; }
    .gallery__slide img { height: 180px; }
    .testimonials__slide { width: 200px; }
    .testimonials__slide img { height: 340px; }
}
