/* -------------------------------------------------------------
   DESIGN SYSTEM & VARIABLES
   ------------------------------------------------------------- */
:root {
    /* Color Palette */
    --primary-dark: #070e17;      /* Rich dark black-blue */
    --navy-blue: #0b192e;         /* Premium deep navy */
    --navy-light: #132742;        /* Secondary container navy */
    --green-accent: #00e676;      /* High vibrance neon soccer green */
    --green-hover: #00c853;       /* Deeper green for hovers */
    --gold-accent: #ffb300;       /* Golden details (stars, badges) */
    --gold-hover: #ffa000;        /* Golden hover */
    --white: #ffffff;
    --light-bg: #f8fafc;          /* Very light gray-blue for backgrounds */
    --light-border: #e2e8f0;      /* Soft borders */
    --text-dark: #0f172a;         /* High-contrast dark text */
    --text-muted: #64748b;        /* Soft gray text */
    --text-light: #f1f5f9;        /* Soft white text */
    --red-accent: #ef4444;        /* Soft red for "Sin este pack" */

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;

    /* Shadows */
    --shadow-soft: 0 10px 30px -15px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
    --shadow-premium: 0 30px 60px -25px rgba(7, 14, 23, 0.15), 0 0 50px -10px rgba(0, 230, 118, 0.1);
    
    /* Animation Speeds */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* -------------------------------------------------------------
   BASE RESET & LAYOUT
   ------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.app-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* -------------------------------------------------------------
   TYPOGRAPHY & HEADERS
   ------------------------------------------------------------- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--green-hover);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.section-tag-light {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--green-accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 16px;
    font-weight: 800;
}

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

/* -------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    padding: 18px 36px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: var(--transition-normal);
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-hover));
    color: var(--primary-dark);
    box-shadow: 0 8px 24px rgba(255, 179, 0, 0.35);
    border-bottom: 3px solid #b77a00;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 179, 0, 0.5);
}

.btn-primary:active {
    transform: translateY(1px);
    border-bottom-width: 1px;
}

.btn-secondary {
    background-color: var(--navy-blue);
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

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

.btn-block {
    width: 100%;
}

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

@keyframes btnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 179, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 179, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 179, 0, 0);
    }
}

/* -------------------------------------------------------------
   TOP ANNOUNCEMENT BAR
   ------------------------------------------------------------- */
.top-announcement-bar {
    background: linear-gradient(90deg, #b77a00, var(--gold-accent), #b77a00);
    color: var(--primary-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    text-align: center;
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 15px;
}

.badge-fire {
    animation: fireFloat 1s infinite alternate;
    display: inline-block;
}

@keyframes fireFloat {
    from { transform: translateY(0) scale(1); }
    to { transform: translateY(-2px) scale(1.15); }
}

.announcement-timer {
    background-color: var(--primary-dark);
    color: var(--gold-accent);
    padding: 2px 10px;
    border-radius: 6px;
    letter-spacing: 0.05em;
    font-weight: 800;
}

.announcement-divider {
    opacity: 0.3;
}

/* -------------------------------------------------------------
   HERO SECTION
   ------------------------------------------------------------- */
.hero-section {
    background: radial-gradient(circle at 80% 20%, var(--navy-light) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 100px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 0.85rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.stars-gold {
    color: var(--gold-accent);
    letter-spacing: 0.1em;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: var(--white);
}

.highlight-green {
    background: linear-gradient(90deg, var(--green-accent), #a3ffb4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 600px;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.hero-cta-info {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-left: 10px;
}

.hero-visual {
    position: relative;
    perspective: 1000px;
}

.mockup-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: transform 0.5s ease;
}

.mockup-wrapper:hover {
    transform: rotateY(-3deg) rotateX(3deg);
}

.mockup-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* -------------------------------------------------------------
   BENEFITS STRIP
   ------------------------------------------------------------- */
.benefits-strip {
    background-color: var(--white);
    border-bottom: 1px solid var(--light-border);
    padding: 30px 0;
    box-shadow: var(--shadow-soft);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.benefit-icon {
    font-size: 2.2rem;
    line-height: 1;
}

.benefit-text h3 {
    font-size: 1rem;
    color: var(--navy-blue);
    font-weight: 700;
    margin-bottom: 4px;
}

.benefit-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* -------------------------------------------------------------
   SECTION: LEARN (QUÉ APRENDERÁS)
   ------------------------------------------------------------- */
.section-learn {
    background-color: var(--white);
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.learn-card {
    background-color: var(--white);
    border: 1px solid var(--light-border);
    padding: 30px 24px;
    border-radius: 16px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.learn-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--green-accent);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform var(--transition-normal);
}

.learn-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(0, 230, 118, 0.3);
}

.learn-card:hover::before {
    transform: scaleY(1);
}

.learn-card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

.learn-card h3 {
    font-size: 1.25rem;
    color: var(--navy-blue);
    margin-bottom: 12px;
    font-weight: 800;
}

.learn-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* -------------------------------------------------------------
   SECTION: CONTAINS (QUÉ CONTIENE EL PAQUETE)
   ------------------------------------------------------------- */
.section-contains {
    background-color: var(--light-bg);
}

.contains-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.contains-visual {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--light-border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: var(--primary-dark);
}

.contains-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-normal);
}

.contains-visual:hover .contains-banner-img {
    transform: scale(1.03);
}

.contains-info h2 {
    margin-bottom: 20px;
}

.contains-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.contains-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.check-icon {
    background-color: rgba(0, 230, 118, 0.1);
    color: var(--green-hover);
    font-weight: bold;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.contains-list li div {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.contains-list li div strong {
    color: var(--navy-blue);
    font-weight: 700;
}

/* -------------------------------------------------------------
   SECTION: GALLERY (GALERÍA DE VIDEO INTERACTIVA MOCK)
   ------------------------------------------------------------- */
.section-gallery {
    background-color: var(--white);
}

.gallery-slider-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.custom-video-player {
    background-color: #000;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-medium);
    border: 4px solid var(--navy-blue);
    aspect-ratio: 16 / 9;
}

.player-screen-slides {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--transition-slow);
    z-index: 1;
}

.gallery-slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Simulated video controls overlay */
.player-controls-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 14, 23, 0.45);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
    transition: opacity var(--transition-normal);
    z-index: 3;
}

.badge-live-drill {
    align-self: flex-start;
    background-color: rgba(7, 14, 23, 0.85);
    color: var(--green-accent);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(0, 230, 118, 0.3);
}

.play-btn-big {
    align-self: center;
    background-color: rgba(0, 230, 118, 0.9);
    border: none;
    color: var(--primary-dark);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.4);
    transition: var(--transition-fast);
}

.play-btn-big:hover {
    transform: scale(1.1);
    background-color: var(--green-accent);
}

.player-bottom-bar {
    width: 100%;
}

.progress-bar-container {
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-bar-fill {
    width: 40%;
    height: 100%;
    background-color: var(--green-accent);
    transition: width 0.1s linear;
}

.player-time-display {
    color: #fff;
    font-size: 0.75rem;
    text-align: right;
}

/* Gallery Slider Navigation Controls */
.gallery-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
}

.gallery-nav-btn {
    background-color: var(--white);
    border: 1px solid var(--light-border);
    color: var(--navy-blue);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
}

.gallery-nav-btn:hover {
    background-color: var(--navy-blue);
    color: var(--white);
    transform: scale(1.05);
}

.gallery-dots {
    display: flex;
    gap: 8px;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    background-color: var(--light-border);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.gallery-dot.active {
    background-color: var(--green-hover);
    width: 24px;
    border-radius: 10px;
}

/* -------------------------------------------------------------
   SECTION: COMPARISON TABLE
   ------------------------------------------------------------- */
.section-comparison {
    background-color: var(--light-bg);
}

.comparison-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--light-border);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th, .comparison-table td {
    padding: 24px 30px;
}

.comparison-table th {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
}

.comparison-table tr {
    border-bottom: 1px solid var(--light-border);
}

.comparison-table tr:last-child {
    border-bottom: none;
}

.comparison-table thead tr {
    background-color: var(--navy-blue);
    color: var(--white);
}

.comparison-table th.col-bad {
    background-color: #1e293b;
    color: #ef4444;
    text-align: center;
    width: 38%;
}

.comparison-table th.col-good {
    background-color: #0b221a;
    color: var(--green-accent);
    text-align: center;
    width: 38%;
}

.comparison-table td.aspect-title {
    font-weight: 700;
    color: var(--navy-blue);
    width: 24%;
}

.comparison-table td.col-bad {
    background-color: rgba(241, 245, 249, 0.5);
    color: var(--text-muted);
}

.comparison-table td.col-good {
    background-color: rgba(0, 230, 118, 0.03);
    color: var(--text-dark);
}

.bad-icon {
    color: var(--red-accent);
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 6px;
}

.good-icon {
    color: var(--green-hover);
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 6px;
}

/* -------------------------------------------------------------
   SECTION: BONOS
   ------------------------------------------------------------- */
.section-bonuses {
    background-color: var(--white);
}

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

.bonus-card {
    background-color: var(--light-bg);
    border: 2px dashed var(--green-accent);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-normal);
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    background-color: var(--white);
}

.bonus-ribbon {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: var(--gold-accent);
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.75rem;
    padding: 4px 30px;
    transform: rotate(45deg);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.bonus-num {
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--green-hover);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.bonus-card h3 {
    font-size: 1.35rem;
    color: var(--navy-blue);
    margin-bottom: 12px;
    font-weight: 800;
}

.bonus-value {
    font-size: 0.85rem;
    color: var(--red-accent);
    text-decoration: line-through;
    font-weight: 600;
    margin-bottom: 16px;
}

.bonus-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* -------------------------------------------------------------
   SECTION: PLANS (ELIGE TU PLAN)
   ------------------------------------------------------------- */
.section-plans {
    background-color: var(--light-bg);
}

.plans-timer-box {
    background: linear-gradient(135deg, #0e2a20 0%, #081d16 100%);
    border: 2px solid var(--green-accent);
    border-radius: 12px;
    padding: 16px;
    max-width: 500px;
    margin: 0 auto 50px auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    box-shadow: 0 8px 30px rgba(0, 230, 118, 0.15);
}

.timer-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--green-accent);
    letter-spacing: 0.05em;
}

.timer-counter {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 0.05em;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    align-items: stretch;
}

.plan-card {
    background-color: var(--white);
    border: 1px solid var(--light-border);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-normal);
}

.plan-premium-highlight {
    border: 3px solid var(--green-accent);
    box-shadow: var(--shadow-premium);
    transform: scale(1.03);
}

.plan-premium-highlight:hover {
    transform: scale(1.05);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--green-accent);
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.8rem;
    padding: 6px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 230, 118, 0.3);
}

.plan-header {
    text-align: center;
    border-bottom: 1px solid var(--light-border);
    padding-bottom: 24px;
    margin-bottom: 30px;
}

.stats-badge {
    font-size: 0.75rem;
    background-color: rgba(0, 230, 118, 0.1);
    color: var(--green-hover);
    padding: 4px 12px;
    border-radius: 30px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 14px;
}

.plan-header h3 {
    font-size: 1.75rem;
    color: var(--navy-blue);
    margin-bottom: 16px;
}

.plan-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-old {
    font-size: 1.1rem;
    color: var(--red-accent);
    text-decoration: line-through;
    font-weight: 500;
    line-height: 1;
}

.price-current {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--navy-blue);
    line-height: 1.1;
    font-family: var(--font-heading);
}

.price-period {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

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

.plan-features li {
    font-size: 0.95rem;
    line-height: 1.4;
}

.plan-features li.included {
    color: var(--text-dark);
}

.plan-features li.not-included {
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.6;
}

.plan-features li.highlight-bonus {
    color: var(--green-hover);
    font-weight: 700;
}

.plan-footer {
    display: flex;
    flex-direction: column;
}

/* -------------------------------------------------------------
   SECTION: TESTIMONIALS (TESTIMONIOS)
   ------------------------------------------------------------- */
.section-testimonials {
    background-color: var(--white);
    overflow: hidden;
}

.testimonials-carousel-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 40px;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    transition: transform var(--transition-slow);
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    background-color: var(--light-bg);
    border: 1px solid var(--light-border);
    border-radius: 20px;
    padding: 36px 30px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-rating {
    color: var(--gold-accent);
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 0.1em;
}

.testimonial-text {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-family: var(--font-heading);
    font-size: 0.9rem;
}

.user-info h4 {
    font-size: 0.95rem;
    color: var(--navy-blue);
    font-weight: 800;
}

.user-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.carousel-nav-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    background-color: var(--light-border);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.testimonial-dot.active {
    background-color: var(--navy-blue);
    width: 24px;
    border-radius: 10px;
}

/* -------------------------------------------------------------
   SECTION: ABOUT ME (SOBRE MÍ)
   ------------------------------------------------------------- */
.section-about {
    background-color: var(--light-bg);
}

.about-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    aspect-ratio: 1 / 1;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-subtitle {
    font-size: 1.25rem;
    color: var(--green-hover);
    margin-bottom: 24px;
    font-weight: 700;
}

.about-text {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* -------------------------------------------------------------
   SECTION: WARRANTY (GARANTÍA)
   ------------------------------------------------------------- */
.section-warranty {
    background-color: var(--white);
}

.warranty-card {
    background-color: var(--white);
    border: 1px solid var(--light-border);
    border-radius: 24px;
    padding: 50px;
    box-shadow: var(--shadow-medium);
    display: grid;
    grid-template-columns: 0.6fr 1.4fr;
    gap: 40px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.warranty-badge-container {
    display: flex;
    justify-content: center;
}

.warranty-badge {
    max-width: 160px;
    height: auto;
    animation: slowSpin 25s infinite linear;
}

@keyframes slowSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(365deg); }
}

.warranty-content h2 {
    font-size: 1.8rem;
    color: var(--navy-blue);
    margin-bottom: 16px;
    font-weight: 900;
}

.warranty-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* -------------------------------------------------------------
   SECTION: FAQ
   ------------------------------------------------------------- */
.section-faq {
    background-color: var(--light-bg);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--light-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-blue);
    cursor: pointer;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: transform var(--transition-fast);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out, padding var(--transition-normal) ease-out;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active {
    border-color: rgba(0, 230, 118, 0.3);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--green-hover);
}

.faq-item.active .faq-answer {
    padding-bottom: 24px;
}

/* -------------------------------------------------------------
   SECTION: CTA FINAL
   ------------------------------------------------------------- */
.section-cta-final {
    background: radial-gradient(circle at center, var(--navy-light) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
    border-top: 4px solid var(--green-accent);
}

.cta-final-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.15;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cta-terms {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* -------------------------------------------------------------
   MAIN FOOTER
   ------------------------------------------------------------- */
.main-footer {
    background-color: var(--primary-dark);
    color: #94a3b8;
    padding: 60px 0 100px 0; /* Add bottom padding for mobile button space */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: var(--white);
    margin-bottom: 12px;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 1rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--green-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    text-align: center;
    font-size: 0.8rem;
}

/* -------------------------------------------------------------
   FLOATING BUTTON (STICKY)
   ------------------------------------------------------------- */
.floating-cta-container {
    position: fixed;
    z-index: 999;
    transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.btn-floating-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-hover));
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(255, 179, 0, 0.4);
    transition: var(--transition-fast);
    animation: buttonPulse 2.5s infinite;
}

.btn-floating-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 179, 0, 0.6);
}

/* -------------------------------------------------------------
   PURCHASE POPUP (BOTTOM-LEFT TOAST)
   ------------------------------------------------------------- */
.purchase-popup {
    position: fixed;
    bottom: 24px;
    left: -400px; /* Initially hidden offscreen */
    z-index: 1001;
    background-color: var(--white);
    border: 1px solid var(--light-border);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-medium);
    max-width: 320px;
    transition: left 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.purchase-popup.show {
    left: 24px;
}

.popup-avatar {
    width: 40px;
    height: 40px;
    background-color: var(--navy-light);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.popup-content {
    flex-grow: 1;
}

.popup-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy-blue);
}

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

.popup-time {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.popup-check-icon {
    background-color: rgba(0, 230, 118, 0.1);
    color: var(--green-hover);
    font-size: 0.8rem;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* -------------------------------------------------------------
   MODAL POPUP FOR CHECKOUT (PROXIMAMENTE)
   ------------------------------------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 14, 23, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
    padding: 20px;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background-color: var(--white);
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-premium);
    transform: translateY(30px);
    transition: transform var(--transition-normal);
}

.modal-overlay.open .modal-card {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--navy-blue);
}

.modal-badge-launch {
    display: inline-block;
    background-color: rgba(0, 230, 118, 0.1);
    color: var(--green-hover);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.modal-header h2 {
    font-size: 1.8rem;
    color: var(--navy-blue);
    margin-bottom: 16px;
}

.modal-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.modal-highlight {
    font-weight: 600;
    color: var(--navy-blue) !important;
}

.modal-form {
    margin: 24px 0;
}

.form-group {
    margin-bottom: 16px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    border: 2px solid var(--light-border);
    font-family: var(--font-primary);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-input:focus {
    border-color: var(--green-accent);
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.15);
}

.modal-status-msg {
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    margin-top: 12px;
}

.modal-status-msg.success {
    color: var(--green-hover);
}

.modal-status-msg.error {
    color: var(--red-accent);
}

.modal-footer {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    border-top: 1px solid var(--light-border);
    padding-top: 16px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* -------------------------------------------------------------
   RESPONSIVIDADE (MEDIA QUERIES)
   ------------------------------------------------------------- */

/* TABLET AND SMALL DESKTOP (Max 1024px) */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-cta-group {
        align-items: center;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .learn-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contains-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contains-visual {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .bonuses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-visual {
        max-width: 400px;
        margin: 0 auto;
    }

    .warranty-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }
}

/* MOBILE FIRST (Max 768px - CELULAR DEBE PARECER APLICATIVO) */
@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .top-announcement-bar {
        font-size: 0.8rem;
    }

    .announcement-stats {
        display: none; /* Hide stats on top bar to save mobile space */
    }

    .announcement-divider {
        display: none;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .learn-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bonuses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .plan-card {
        padding: 30px 20px;
    }

    .plan-premium-highlight {
        transform: scale(1);
    }

    .plan-premium-highlight:hover {
        transform: scale(1);
    }

    .testimonial-card {
        flex: 0 0 100%;
    }

    .comparison-table th, .comparison-table td {
        padding: 14px 10px;
        font-size: 0.85rem;
    }

    .comparison-table th {
        font-size: 0.95rem;
    }

    .comparison-table td.aspect-title {
        width: 30%;
    }

    /* Floating Button fixed at the bottom for Mobile */
    .floating-cta-container {
        left: 0;
        bottom: 0;
        width: 100%;
        padding: 12px 16px;
        background: rgba(7, 14, 23, 0.95);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
    }

    .btn-floating-cta {
        width: 100%;
        padding: 16px 20px;
        border-radius: 10px;
        font-size: 1.1rem;
    }

    .purchase-popup {
        bottom: 95px; /* Make sure it doesn't overlap the mobile bottom CTA bar */
        max-width: calc(100% - 32px);
        left: -400px;
    }
    
    .purchase-popup.show {
        left: 16px;
    }
}

/* DESKTOP SPECIFIC RULES (Floating Button on the right) */
@media (min-width: 769px) {
    .floating-cta-container {
        right: 30px;
        bottom: 30px;
    }

    .btn-floating-cta {
        padding: 20px 30px;
        border-radius: 50px;
        font-size: 1rem;
    }
}

/* -------------------------------------------------------------
   MODAL UPSELL (OFERTA ÚNICA)
   ------------------------------------------------------------- */
.upsell-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 14, 23, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 15px;
}

.upsell-modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.upsell-card {
    background-color: #fcfbf7; /* Slight off-white background matching screenshot */
    border-radius: 16px;
    width: 100%;
    max-width: 440px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    text-align: center;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(7, 14, 23, 0.1);
}

.upsell-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #94a3b8;
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition-fast);
}

.upsell-close:hover {
    color: #0f172a;
}

.upsell-badge {
    background-color: #f59e0b; /* Yellow badge */
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.7rem;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.upsell-header h2 {
    font-family: var(--font-heading);
    color: #0f172a;
    font-size: 1.35rem;
    font-weight: 900;
    margin-bottom: 8px;
    line-height: 1.25;
}

.upsell-subtitle {
    color: #475569;
    font-size: 0.85rem;
    margin-bottom: 16px;
    line-height: 1.35;
}

.upsell-subtitle strong {
    color: #0f172a;
}

.upsell-subtitle .highlight-green {
    color: #10b981;
    font-weight: 800;
}

.upsell-benefits-box {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    text-align: left;
    margin-bottom: 16px;
}

.upsell-benefits-box h4 {
    font-family: var(--font-heading);
    color: #1e293b;
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.upsell-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.upsell-list li {
    font-size: 0.78rem;
    line-height: 1.45;
    margin-bottom: 6px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
}

.upsell-list li.check {
    color: #0f172a;
}

.upsell-list li.gift {
    font-weight: 700;
    color: #1e293b;
}

.upsell-timer-alert {
    background-color: #fef2f2;
    border: 1px solid #fca5a5;
    color: #b91c1c;
    border-radius: 8px;
    padding: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.upsell-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-upsell-accept {
    display: flex;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-upsell-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.accept-part-left {
    background-color: #15803d; /* Dark green */
    color: #ffffff;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
}

.accept-part-right {
    background-color: #eab308; /* Gold/yellow */
    color: #ffffff;
    padding: 14px 20px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.3px;
}

.btn-upsell-decline {
    background-color: #ffffff;
    color: #64748b;
    font-size: 0.78rem;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s, color 0.2s;
}

.btn-upsell-decline:hover {
    background-color: #f1f5f9;
    color: #334155;
}
