/* ============================
   DESIGN SYSTEM & VARIABLES
   ============================ */
:root {
    /* Colors */
    --color-bg-dark: #0d0d14;
    --color-bg-darker: #08080e;
    --color-surface-dark: #151520;
    --color-white: #ffffff;
    --color-light: #f8f9fa;
    --color-gray-50: #f5f5f7;
    --color-gray-100: #e8e8ec;
    --color-gray-200: #d1d1d8;
    --color-gray-300: #a0a0ad;
    --color-gray-400: #6e6e7a;
    --color-gray-500: #4a4a56;
    --color-gray-600: #2d2d38;

    /* Accent Colors */
    --color-orange: #ff6b35;
    --color-yellow: #ffd600;
    --color-red: #ff1744;
    --color-green: #00c853;
    --color-green-dark: #00a844;
    --color-green-light: #69f0ae;
    --color-green-glow: rgba(0, 200, 83, 0.3);

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #0d0d14 0%, #1a1025 40%, #0d1420 100%);
    --gradient-green: linear-gradient(135deg, #00c853, #00e676);
    --gradient-green-hover: linear-gradient(135deg, #00a844, #00c853);
    --gradient-orange: linear-gradient(135deg, #ff6b35, #ff8f00);
    --gradient-oferta: linear-gradient(135deg, #0d0d14 0%, #1a0d25 50%, #0d1420 100%);

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

    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;
    --border-radius: 16px;
    --border-radius-sm: 10px;
    --border-radius-lg: 24px;

    /* Shadows */
    --shadow-card: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-card-hover: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-green: 0 8px 32px rgba(0, 200, 83, 0.35);
    --shadow-green-hover: 0 12px 48px rgba(0, 200, 83, 0.5);
    --shadow-dark: 0 8px 32px rgba(0,0,0,0.3);

    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================
   RESET & BASE
   ============================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: #1a1a2e;
    background: var(--color-white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================
   SECTION BASE STYLES
   ============================ */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-white {
    background: var(--color-white);
}

.section-light {
    background: var(--color-gray-50);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 214, 0, 0.1));
    color: var(--color-orange);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 107, 53, 0.15);
}

.tag-light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-yellow);
    border-color: rgba(255, 214, 0, 0.2);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.section-title.text-white {
    color: var(--color-white);
}

.section-title.text-left {
    text-align: left;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray-400);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================
   ANIMATIONS
   ============================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 var(--color-green-glow);
    }
    50% {
        box-shadow: 0 0 0 16px rgba(0, 200, 83, 0);
    }
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

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

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ============================
   DISCOUNT BAR
   ============================ */
.discount-bar {
    background: linear-gradient(135deg, #f77732, #e8563d);
    padding: 14px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.discount-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% 100%;
}

.discount-bar-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
    background: var(--color-white);
    position: relative;
    padding: 60px 0 80px;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
}

.hero-sub-headline {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-white);
    background: var(--color-orange);
    padding: 8px 22px;
    border-radius: 50px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInUp 0.5s ease both;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 900;
    color: #1a1a2e;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-title-highlight {
    display: block;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--color-gray-400);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 650px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-image {
    position: relative;
    max-width: 580px;
    margin: 0 auto 40px;
    animation: fadeInScale 0.8s ease 0.25s both;
}

.hero-image img {
    position: relative;
    z-index: 1;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.hero-badges {
    display: flex;
    gap: 24px;
    margin-top: 28px;
    animation: fadeInUp 0.6s ease 0.4s both;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-seal {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-gray-400);
    font-size: 0.85rem;
    font-weight: 500;
}

.seal-icon {
    font-size: 1.1rem;
}

/* ============================
   BUTTONS
   ============================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 18px 40px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.btn-cta {
    background: var(--gradient-green);
    color: var(--color-white);
    box-shadow: var(--shadow-green);
    animation: pulse 2s ease-in-out infinite;
    letter-spacing: 0.5px;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-cta:hover {
    background: var(--gradient-green-hover);
    box-shadow: var(--shadow-green-hover);
    transform: translateY(-3px) scale(1.02);
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-hero-cta {
    animation: fadeInUp 0.6s ease 0.3s both, pulse 2s ease-in-out 1s infinite;
    font-size: 1.1rem;
    padding: 20px 48px;
}

.btn-icon {
    font-size: 1.2rem;
}

.btn-arrow {
    transition: transform var(--transition);
}

.btn-cta:hover .btn-arrow {
    transform: translateX(4px);
}

/* ============================
   FEATURE CARDS
   ============================ */


/* Tag variant for green badges */
.tag-green {
    background: #e8f7f0;
    color: #0d8350;
    border-color: rgba(13, 131, 80, 0.15);
}

/* Redesigned grid for Lo Que Vas a Recibir */
.recibir-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.premium-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-100);
    border-radius: var(--border-radius);
    padding: 40px 32px;
    transition: all var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
}

.premium-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(13, 131, 80, 0.2);
}

.premium-card-icon-box {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0d8350, #00c853);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 24px;
    box-shadow: 0 8px 16px rgba(13, 131, 80, 0.15);
}

.premium-card-icon-box svg {
    display: block;
}

.premium-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.premium-card p {
    color: var(--color-gray-400);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.premium-card-divider {
    border: 0;
    height: 1px;
    background: var(--color-gray-100);
    margin: 20px 0;
}

.premium-card-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.premium-card-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--color-gray-600);
    line-height: 1.4;
}

.bullet-check-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    border: 1.5px solid #00c853;
    color: #00c853;
    margin-top: 1px;
}

.bullet-check-circle svg {
    display: block;
}

/* Redesigned grid for ¿Por Qué Elegir Nuestro Material? */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-100);
    border-radius: var(--border-radius);
    padding: 36px 32px;
    transition: all var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(13, 131, 80, 0.2);
}

.benefit-card-icon-box {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0d8350, #00c853);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.3rem;
    margin-bottom: 20px;
    box-shadow: 0 6px 12px rgba(13, 131, 80, 0.15);
}

.benefit-card-icon-box svg {
    display: block;
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.benefit-card p {
    color: var(--color-gray-400);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================
   BONOS SECTION
   ============================ */
.bonos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.bono-card-redesigned {
    background: var(--color-white);
    border: 1px solid var(--color-gray-100);
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
}

.bono-card-redesigned:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(13, 131, 80, 0.2);
}

.bono-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.bono-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.bono-card-redesigned:hover .bono-image-container img {
    transform: scale(1.05);
}

.bono-badge-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #00c853;
    color: var(--color-white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(0, 200, 83, 0.3);
}

.bono-card-content {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bono-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a2e;
    line-height: 1.4;
}

.bono-card-content p {
    color: var(--color-gray-400);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.bono-card-divider {
    border: 0;
    height: 1px;
    background: var(--color-gray-100);
    margin-top: auto;
    margin-bottom: 16px;
}

.bono-card-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: var(--color-gray-500);
}

.bono-val-old {
    text-decoration: line-through;
    color: var(--color-red);
    font-weight: 600;
}

.bono-val-free {
    color: #00c853;
    font-weight: 700;
}

/* Footer summary badge */
.bonos-summary-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e8f7f0;
    color: #0d8350;
    border: 1px solid rgba(13, 131, 80, 0.2);
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(13, 131, 80, 0.05);
}

.bonos-summary-container {
    text-align: center;
    width: 100%;
}

/* ============================
   OFERTA SECTION
   ============================ */
.section-oferta {
    background: #f9fafb;
    padding: 100px 0 120px;
    position: relative;
    border-top: 1px solid var(--color-gray-100);
}

.section-oferta .section-title {
    color: #1a1a2e;
}

.oferta-desc {
    text-align: center;
    color: var(--color-gray-400);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

/* Redesigned Timer Layout */
.timer-container {
    text-align: center;
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.timer-tag {
    display: inline-block;
    background: #ff3b30;
    color: var(--color-white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.timer-display {
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.timer-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.timer-box {
    background: #1e1e2f;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.timer-label-sub {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--color-gray-400);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.timer-colon {
    font-size: 2rem;
    font-weight: 700;
    color: #1e1e2f;
    margin-top: -24px;
}

.timer-expired {
    color: var(--color-red) !important;
    background: #1e1e2f !important;
}

.timer-low {
    color: #ff3b30 !important;
    background: #1e1e2f !important;
}

/* Pricing Grid Redesign */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 40px;
    align-items: stretch;
}

.plan-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-100);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.plan-card-header {
    background: #f5f5f7;
    padding: 16px;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-bottom: 1px solid var(--color-gray-100);
}

/* Featured Orange Card */
.plan-card-featured {
    border: 2px solid var(--color-orange);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.plan-card-featured:hover {
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.25);
}

.plan-card-featured .plan-card-header {
    background: linear-gradient(135deg, #ff6b35, #ff8f00);
    color: var(--color-white);
    font-size: 1.1rem;
    border-bottom: none;
}

.plan-card-badge-wrap {
    text-align: center;
    padding: 20px 20px 0;
}

.plan-card-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.plan-card-price-area {
    margin-bottom: 28px;
}

.plan-card-old-price {
    font-size: 1.1rem;
    text-decoration: line-through;
    color: var(--color-red);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.plan-card-current-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    font-family: var(--font-heading);
    font-weight: 900;
    color: #1a1a2e;
    line-height: 1;
    margin-bottom: 4px;
}

.plan-card-price-symbol {
    font-size: 1.8rem;
    margin-top: 10px;
    font-weight: 800;
}

.plan-card-price-val {
    font-size: 4.8rem;
}

.plan-card-price-currency-label {
    font-size: 1.8rem;
    margin-top: 10px;
    margin-left: 6px;
    font-weight: 800;
}

.plan-card-price-period {
    font-size: 0.85rem;
    color: var(--color-gray-400);
    text-transform: lowercase;
}

.plan-card-featured .plan-card-current-price {
    color: var(--color-orange);
}

.plan-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.plan-card-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--color-gray-600);
    line-height: 1.4;
}

.plan-card-features li.disabled {
    color: var(--color-gray-300);
    text-decoration: line-through;
}

.feature-check-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    border: 1.5px solid #00c853;
    color: #00c853;
}

.feature-cross-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    border: 1.5px solid var(--color-red);
    color: var(--color-red);
    opacity: 0.6;
}

.feature-check-circle svg,
.feature-cross-circle svg {
    display: block;
}

.plan-card-btn {
    width: 100%;
    border-radius: 50px;
    padding: 16px 28px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    transition: all var(--transition);
    border: 1px solid var(--color-gray-200);
    background: var(--color-white);
    color: var(--color-gray-600);
    margin-top: auto;
    cursor: pointer;
    display: inline-block;
}

.plan-card-btn:hover {
    background: var(--color-gray-50);
    border-color: var(--color-gray-300);
}

.plan-card-featured .plan-card-btn {
    background: linear-gradient(135deg, #ff6b35, #ff8f00);
    color: var(--color-white);
    border: none;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.plan-card-featured .plan-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}

.plan-card-trust {
    font-size: 0.8rem;
    color: var(--color-gray-400);
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.plan-card-trust svg {
    color: #00c853;
}

.urgency-text {
    text-align: center;
    position: relative;
    margin-top: 30px;
}

.urgency-text p {
    color: #856404;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 16px 28px;
    background: #fff3cd;
    border: 1px solid #ffeeba;
    border-radius: var(--border-radius-sm);
    display: inline-block;
}

/* ============================
   CAROUSEL
   ============================ */
.carousel-wrapper {
    position: relative;
    max-width: 750px;
    margin: 0 auto;
}

.carousel {
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card-hover);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: white;
    padding: 40px 24px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
}

.carousel-btn {
    position: absolute;
    top: auto;
    bottom: -44px;
    transform: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--color-gray-200);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all var(--transition);
    color: #1a1a2e;
    z-index: 5;
}

.carousel-btn:hover {
    background: var(--color-white);
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.carousel-btn-prev {
    left: calc(50% - 90px);
}

.carousel-btn-next {
    right: calc(50% - 90px);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 44px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-gray-200);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.carousel-dot.active {
    background: var(--color-orange);
    width: 32px;
    border-radius: 5px;
}

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-100);
    border-radius: var(--border-radius);
    padding: 32px 28px;
    transition: all var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.testimonial-stars {
    color: #FFB800;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    overflow: hidden;
}

.testimonial-avatar a {
    width: 100%;
    height: 100%;
    display: block;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-info strong {
    font-size: 0.95rem;
    color: #1a1a2e;
}

.testimonial-info span {
    font-size: 0.8rem;
    color: var(--color-gray-400);
}

.garantia-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 36px;
    max-width: 600px;
    margin: 0 auto;
}

.garantia-shield {
    flex-shrink: 0;
    width: 150px;
    height: 180px;
    background: linear-gradient(135deg, #00df82, #00b853);
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 223, 130, 0.25);
    position: relative;
    padding-top: 15px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.garantia-shield:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 223, 130, 0.35);
}

.shield-icon {
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.shield-days {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin: 0;
}

.shield-text {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    color: rgba(255,255,255,0.95);
    letter-spacing: 5px;
    margin-top: 2px;
    text-transform: uppercase;
}

.garantia-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.garantia-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.garantia-text {
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 580px;
}

.garantia-seals-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.garantia-seal-row-1 {
    display: flex;
    justify-content: center;
}

.garantia-seal-row-2 {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.garantia-seal {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f3f4f6;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4b5563;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

/* ============================
   FAQ
   ============================ */
.faq-container {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--color-white);
    border: 1px solid var(--color-gray-100);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item:hover {
    border-color: var(--color-gray-200);
}

.faq-item.active {
    border-color: var(--color-orange);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.08);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a2e;
    text-align: left;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--color-orange);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-orange);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
    padding: 0 28px 22px;
    color: var(--color-gray-400);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ============================
   FINAL CTA
   ============================ */
.section-final-cta {
    background: var(--color-gray-50);
    padding: 80px 0;
    text-align: center;
}

.final-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.final-cta-text {
    color: var(--color-gray-400);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.btn-final {
    font-size: 1.15rem;
    padding: 22px 52px;
}

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

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copy {
    color: var(--color-gray-400);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--color-gray-400);
    font-size: 0.85rem;
    transition: color var(--transition);
}

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

/* ============================
   RESPONSIVE
   ============================ */

/* Tablet */
@media (max-width: 1024px) {
    .hero-image {
        max-width: 480px;
    }

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

    .bonos-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        justify-self: center;
    }

    .garantia-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .section-title.text-left {
        text-align: center;
    }

    .garantia-seals {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.6rem);
    }

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

    .hero-image {
        max-width: 100%;
        margin-bottom: 32px;
    }

    .discount-bar-text {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-hero-cta {
        font-size: 0.95rem;
        padding: 16px 36px;
        width: 100%;
        max-width: 400px;
    }

    .recibir-grid {
        grid-template-columns: 1fr;
    }

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

    .bonos-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .plan-card-featured {
        transform: scale(1);
    }

    .plan-card-featured:hover {
        transform: translateY(-4px);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid .testimonial-card:last-child {
        max-width: none;
    }

    .timer-number {
        font-size: 2.2rem;
    }

    .timer-block {
        min-width: 60px;
    }

    .timer {
        padding: 12px 20px;
    }

    .carousel-wrapper {
        width: 100vw;
        margin-left: -24px;
        margin-right: -24px;
        max-width: 100vw;
    }

    .carousel {
        border-radius: 0;
        box-shadow: none;
    }

    .carousel-slide img {
        aspect-ratio: auto;
        height: auto;
        object-fit: contain;
    }

    .carousel-caption {
        display: none !important;
    }

    .carousel-btn {
        display: none !important;
    }

    .garantia-shield {
        width: 130px;
        height: 150px;
    }

    .shield-days {
        font-size: 2.8rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }

    .price-value {
        font-size: 3.5rem;
    }

    .btn-pricing,
    .btn-pricing-featured {
        font-size: 0.95rem;
        padding: 16px 24px;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero {
        padding: 40px 0 80px;
    }

    .container {
        padding: 0 16px;
    }

    .carousel-wrapper {
        margin-left: -16px;
        margin-right: -16px;
    }

    .feature-card {
        padding: 28px 24px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 20px 18px;
        font-size: 0.9rem;
    }

    .timer-number {
        font-size: 1.8rem;
    }

    .timer-separator {
        font-size: 1.8rem;
    }

    .btn-final {
        width: 100%;
        font-size: 1rem;
        padding: 18px 32px;
    }
}
