﻿:root {
    --bg-deep: rgb(62, 61, 60);
    --bg-mid: rgb(25, 50, 115);
    --blue-primary: rgb(38, 87, 164);
    --blue-light: rgb(38, 87, 164);
    --blue-muted: rgba(38, 87, 164, 0.55);
    --lime: rgb(199, 223, 36);
    --white: #ffffff;
    --white-60: rgba(255, 255, 255, 0.60);
    --white-40: rgba(255, 255, 255, 0.40);
    --nav-height: 90px;
    --section-px: clamp(24px, 8vw, 120px);
    --card-radius: 16px;
    --glass-bg: rgba(62, 61, 60, 0.75);
    --glass-border: rgba(199, 223, 36, 0.2);
    --glass-blur: blur(14px);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    background: var(--bg-deep);
    color: var(--white);
    overflow-x: hidden;
    animation: pageFadeIn 0.4s ease both;
}

@keyframes pageFadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

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

.rs-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
    color: var(--white);
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 60px;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
    box-shadow: 0 6px 24px rgba(38, 87, 164, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.rs-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.rs-btn:hover::before {
    left: 100%;
}

.rs-btn:hover {
    transform: scale(1.04);
    box-shadow: 0 10px 40px rgba(38, 87, 164, 0.6), 0 0 50px rgba(199, 223, 36, 0.08);
}

.rs-btn-arrow {
    transition: transform 0.3s ease;
}

.rs-btn:hover .rs-btn-arrow {
    transform: translateX(6px);
}

.hero-section {
    height: 100vh;
    min-height: 600px;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: var(--nav-height);
    background: #0b0b0b;
    
}

.hero-video-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-video {
    position: absolute;
    inset: 0;
    
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
}

.hero-video--desktop {
    display: block;
}

.hero-video--mobile {
    display: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(0, 0, 0, 0.10) 40%,
            rgba(0, 0, 0, 0.10) 60%,
            rgba(0, 0, 0, 0.55) 100%);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: clamp(24px, 4vh, 40px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    animation: scrollFadeIn 1.2s ease 1.5s both;
}

.hero-scroll-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--white);
    text-transform: uppercase;
}

.hero-scroll-line {
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--white), transparent);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: 1;
    }

    50% {
        transform: scaleY(0.5);
        transform-origin: top;
        opacity: 0.4;
    }
}

@keyframes scrollFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }

    to {
        opacity: 0.7;
        transform: translateX(-50%) translateY(0);
    }
}

.hero-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background:
        radial-gradient(ellipse 80% 70% at 50% 40%, rgba(199, 223, 36, 0.18) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 80% 80%, rgba(38, 87, 164, 0.2) 0%, transparent 55%),
        radial-gradient(ellipse 40% 30% at 15% 70%, rgba(199, 223, 36, 0.08) 0%, transparent 50%);
}

.hero-center {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 4vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-eyebrow {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 5px;
    color: var(--blue-light);
    text-transform: uppercase;
    margin: 0 0 28px 0;
    opacity: 0;
    transform: translateY(20px);
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--blue-light);
}

.hero-title-wrapper {
    position: relative;
    width: 100%;
    margin: 0 0 28px 0;
    line-height: 0.9;
    overflow: visible;
    padding-bottom: 0.1em;
}

.hero-title-line {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(80px, 14vw, 160px);
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--white);
    margin: 0;
    display: block;
    opacity: 0;
    transform: translateY(60px);
}

.palabra {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    opacity: 0;
}

.palabra:nth-child(1) {
    animation: wordFade 9s ease-in-out 0s infinite;
}

.palabra:nth-child(2) {
    animation: wordFade 9s ease-in-out 3s infinite;
}

.palabra:nth-child(3) {
    animation: wordFade 9s ease-in-out 6s infinite;
}

@keyframes wordFade {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0.85) translateY(12px);
        filter: blur(6px);
    }

    8% {
        opacity: 1;
        transform: translateX(-50%) scale(1) translateY(0);
        filter: blur(0);
    }

    28% {
        opacity: 1;
        transform: translateX(-50%) scale(1) translateY(0);
        filter: blur(0);
    }

    36% {
        opacity: 0;
        transform: translateX(-50%) scale(1.1) translateY(-12px);
        filter: blur(6px);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) scale(1.1) translateY(-12px);
        filter: blur(6px);
    }
}

.hero-title-accent {
    background: linear-gradient(90deg, var(--lime) 0%, var(--blue-light) 50%, var(--blue-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: heroShimmer 4s linear infinite;
    animation-play-state: paused;
}

@keyframes heroShimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(15px, 1.8vw, 18px);
    font-weight: 300;
    color: var(--white-60);
    line-height: 1.6;
    max-width: 480px;
    margin: 0 0 48px 0;
    opacity: 0;
    transform: translateY(20px);
}

.hero-subtitle strong {
    color: var(--lime);
    font-weight: 600;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 3px;
    text-decoration: none;
    padding: 18px 44px;
    border-radius: 60px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 32px rgba(38, 87, 164, 0.4);
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 48px rgba(38, 87, 164, 0.6), 0 0 60px rgba(199, 223, 36, 0.1);
}

.hero-cta-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.hero-cta:hover .hero-cta-arrow {
    transform: translateX(6px);
}

@media (max-width: 1024px) {
    .hero-section {
        
        height: 80vh;
        min-height: 480px;
    }

    
    .hero-video--desktop {
        display: none;
    }

    .hero-video--mobile {
        display: block;
    }

    
    .hero-video--mobile {
        object-position: center center;
    }

    .hero-title-line {
        font-size: clamp(60px, 18vw, 100px);
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 36px;
    }

    .hero-cta {
        padding: 14px 32px;
        font-size: 18px;
    }

    .hero-scroll-indicator {
        bottom: 16px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 75vh;
        min-height: 400px;
    }
}

.wave-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: clamp(50px, 6vw, 80px);
}

.wave-divider--hero {
    margin-top: -2px;
    
    margin-bottom: -2px;
    
    background: transparent;
    
}

.wave-divider--sep {
    margin-top: -2px;
    margin-bottom: -2px;
    background: var(--bg-mid);
    
}

img[alt="Cancha"] {
    width: 100%;
    height: 100dvh;
    object-fit: cover;
    position: sticky;
    top: 0;
    z-index: -1;
    display: block;
}

main#inicio-scroll {
    height: 235vh;
    position: relative;
}

.timeline-overlay {
    position: fixed;
    right: 4vw;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 20px;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
}

.timeline-overlay.is-visible {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    transition: transform 0.5s cubic-bezier(0.65, 0.05, 0, 1);
}

.timeline-overlay.is-visible .tl-backdrop-panel {
    transform: translateX(0);
}

.timeline-overlay.is-visible .timeline-item {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
}

.timeline-overlay.is-visible::before {
    opacity: 1;
    transform: scaleY(1);
}

.timeline-overlay.is-collapsed {
    transform: translateY(-50%) translateX(calc(100% + 2vw));
    transition: transform 0.5s cubic-bezier(0.65, 0.05, 0, 1);
}

.timeline-backdrop {
    position: absolute;
    inset: -20px -24px;
    border-radius: 22px;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.tl-backdrop-panel {
    position: absolute;
    inset: 0;
    border-radius: 22px;
    transform: translateX(110%);
}

.tl-panel-1 {
    background: rgba(199, 223, 36, 0.08);
}

.tl-panel-2 {
    background: rgba(62, 61, 60, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.tl-panel-3 {
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(199, 223, 36, 0.12);
}

.timeline-toggle {
    position: absolute;
    left: -58px;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: 1px solid rgba(199, 223, 36, 0.35);
    border-radius: 50%;
    background: rgba(62, 61, 60, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.65, 0.05, 0, 1), background 0.3s ease, box-shadow 0.3s ease;
    pointer-events: auto;
    z-index: 5;
    box-shadow: 0 0 24px rgba(199, 223, 36, 0.3);
}

.timeline-toggle:hover {
    background: rgba(199, 223, 36, 0.5);
    box-shadow: 0 0 30px rgba(199, 223, 36, 0.35);
    transform: translateY(-50%) scale(1.1);
}

.timeline-overlay.is-collapsed .timeline-toggle {
    transform: translateY(-50%) rotate(180deg);
}

.timeline-overlay::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(199, 223, 36, 0.6), rgba(199, 223, 36, 0.3), transparent);
    border-radius: 2px;
    z-index: 1;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateX(60px) rotate(6deg);
}

.timeline-dot {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(62, 61, 60, 0.7);
    border: 2px solid rgba(199, 223, 36, 0.3);
    margin-top: 4px;
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.2);
    border-color: var(--blue-light);
    box-shadow: 0 0 0 6px rgba(199, 223, 36, 0.2), 0 0 20px rgba(199, 223, 36, 0.3);
}

@keyframes dotPulse {

    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(199, 223, 36, 0.08);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(199, 223, 36, 0.18), 0 0 20px rgba(199, 223, 36, 0.12);
    }
}

.timeline-item.is-revealed .timeline-dot {
    background: rgba(199, 223, 36, 0.2);
    border-color: var(--blue-light);
    animation: dotPulse 3s ease-in-out infinite;
}

.timeline-content {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(199, 223, 36, 0.1);
    border-radius: 16px;
    padding: 16px 22px;
    min-width: 220px;
    max-width: 280px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.timeline-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue-light), transparent);
    transition: width 0.4s cubic-bezier(0.65, 0.05, 0, 1);
}

.timeline-item:hover .timeline-content {
    transform: translateY(-3px);
    border-color: rgba(199, 223, 36, 0.3);
    box-shadow: 0 8px 30px rgba(199, 223, 36, 0.15), 0 0 60px rgba(199, 223, 36, 0.05);
}

.timeline-item:hover .timeline-content::after {
    width: 80%;
}

.timeline-item.is-revealed .timeline-content {
    border-color: rgba(199, 223, 36, 0.2);
    box-shadow: 0 4px 20px rgba(199, 223, 36, 0.08);
}

.timeline-tag {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--blue-light);
    display: block;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.timeline-content h3 {
    margin: 0 0 4px 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--white);
    line-height: 1.1;
}

.timeline-content h3 a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.timeline-content h3 a:hover {
    color: var(--blue-muted);
    text-shadow: 0 0 16px rgba(199, 223, 36, 0.5);
}

.nueva-seccion {
    position: relative;
    min-height: 100vh;
    background: var(--bg-mid);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 100px var(--section-px);
    overflow: hidden;
    clip-path: polygon(0 0, 100% 5%, 100% 92%, 0 100%);
    margin-bottom: -60px;
}

.ns-bg-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 70% 55% at 50% 30%, rgba(62, 61, 60, 0.35) 0%, transparent 68%);
}

.ns-color-tint {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-color: rgba(140, 15, 35, 0.45);
    mix-blend-mode: multiply;
    opacity: 0.6;
}

.ns-image-wrapper {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    max-width: 600px;
    pointer-events: none;
    z-index: 0;
}

.ns-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 60px rgba(38, 87, 164, 0.3));
}

.ns-content {
    position: relative;
    z-index: 2;
    max-width: 420px;
    flex: 1;
    min-width: 280px;
}

.ns-info {
    position: relative;
    z-index: 2;
    max-width: 400px;
    flex: 1;
    min-width: 280px;
    padding: 28px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(199, 223, 36, 0.15);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.ns-eyebrow {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 5px;
    color: var(--blue-light);
    text-transform: uppercase;
    margin: 0 0 16px 0;
}

.ns-eyebrow::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--blue-light);
    vertical-align: middle;
    margin-right: 10px;
}

.ns-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 8vw, 96px);
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 0.95;
    margin: 0 0 28px 0;
    color: var(--white);
}

.ns-title em {
    font-style: normal;
    background: linear-gradient(90deg, var(--blue-light), var(--lime), var(--blue-light));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rsShimmer 3s linear infinite;
}

.ns-body {
    font-size: 16px;
    font-weight: 300;
    color: var(--white-60);
    line-height: 1.7;
    margin: 0 0 40px 0;
}

.ns-subtitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: var(--blue-light);
    margin: 24px 0 12px 0;
}

.ns-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.ns-list li {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    padding-left: 18px;
    position: relative;
}

.ns-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--lime);
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
}

.ns-list li strong {
    color: var(--lime);
    font-weight: 600;
}

.ns-list-highlight {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: var(--white) !important;
}

.ns-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    font-style: italic;
    line-height: 1.5;
    margin: 8px 0 0 0;
}

.sep-left-bar {
    background: var(--bg-mid);
    padding: 60px var(--section-px);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(20px, 3vw, 40px);
    position: relative;
    z-index: 2;
}

.sep-left-bar .sep-card {
    flex: 1 1 260px;
    max-width: 340px;
}

.section-separator {
    position: relative;
    padding: 120px var(--section-px) 100px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    min-height: 80vh;
}

.sep-bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sep-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    filter: brightness(0.35) saturate(0.7);
}

.sep-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(10, 10, 18, 0.55) 0%, rgba(10, 10, 18, 0.2) 45%, rgba(10, 10, 18, 0.7) 100%),
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(38, 87, 164, 0.25) 0%, transparent 70%);
}

.sep-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    max-width: 1100px;
    width: 100%;
    text-align: center;
}

.sep-headline {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.sep-headline-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 8vw, 96px);
    color: var(--white);
    letter-spacing: 2px;
    line-height: 0.95;
    margin: 0;
}

.sep-headline-title span {
    color: var(--lime);
    display: block;
}

.sep-headline-sub {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: clamp(15px, 1.8vw, 18px);
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    margin: 0;
    line-height: 1.6;
}

.sep-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(10, 10, 20, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 48px;
    width: 100%;
    max-width: 900px;
}

.sep-stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.sep-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 7vw, 88px);
    color: var(--lime);
    line-height: 1;
    letter-spacing: 1px;
}

.sep-stat-unit {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(22px, 3vw, 36px);
    color: var(--lime);
    opacity: 0.85;
    letter-spacing: 1px;
    margin-left: 2px;
}

.sep-stat-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

.sep-stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.sep-benefits-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
}

.sep-benefit-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.sep-benefit-pill:hover {
    border-color: rgba(199, 223, 36, 0.4);
    background: rgba(199, 223, 36, 0.06);
    transform: translateY(-4px);
}

.sep-benefit-pill .sep-benefit-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: rgba(199, 223, 36, 0.15);
    border: 1px solid rgba(199, 223, 36, 0.35);
    color: var(--lime);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sep-benefit-pill div strong {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 17px;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 4px;
}

.sep-benefit-pill div p {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    line-height: 1.5;
}

.sep-footer-note {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

.sep-footer-note strong {
    color: var(--lime);
}

@media (max-width: 900px) {
    .sep-stats-row {
        flex-wrap: wrap;
        padding: 32px 24px;
        gap: 24px;
    }

    .sep-stat-divider {
        display: none;
    }

    .sep-stat-item {
        flex: 1 1 40%;
    }

    .sep-benefits-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .sep-stat-item {
        flex: 1 1 100%;
    }

    .sep-benefits-row {
        grid-template-columns: 1fr;
    }

    .section-separator {
        min-height: auto;
        padding: 80px var(--section-px) 72px;
    }
}

.sep-left,
.sep-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sep-right {
    align-items: flex-end;
    text-align: right;
}

.sep-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--card-radius);
    padding: 24px 28px;
    max-width: 300px;
    transition: border-color 0.3s ease;
}

.sep-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: var(--blue-light);
    margin: 0 0 10px 0;
}

.sep-card-text {
    font-size: 14px;
    font-weight: 300;
    color: var(--white-60);
    line-height: 1.65;
    margin: 0;
}

.sep-card-text strong {
    color: var(--lime);
}

.sep-center {
    text-align: center;
    padding: 0;
    background: transparent;
    border: none;
    width: 100%;
    max-width: 680px;
}

.sep-benefits-card {
    background: rgba(38, 87, 164, 0.15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(199, 223, 36, 0.2);
    border-radius: 20px;
    padding: 48px 56px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sep-benefits-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--lime);
    margin: 0;
}

.sep-benefits-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 400;
    color: var(--white);
    letter-spacing: 1.5px;
    margin: 0;
    line-height: 1.1;
}

.sep-benefits-title span {
    color: var(--lime);
}

.sep-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sep-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
}

.sep-benefit-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: rgba(199, 223, 36, 0.15);
    border: 1px solid rgba(199, 223, 36, 0.35);
    color: var(--lime);
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sep-benefits-list li div strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.sep-benefits-list li div p {
    font-size: 12px;
    font-weight: 300;
    color: var(--white-60);
    margin: 0;
    line-height: 1.5;
}

.sep-benefits-footer {
    font-size: 12px;
    color: var(--white-60);
    margin: 0;
    padding-top: 12px;
    border-top: 1px solid rgba(199, 223, 36, 0.15);
}

.sep-benefits-footer strong {
    color: var(--lime);
}

.sep-center-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: var(--white);
    margin: 0 0 20px 0;
}

.sep-center-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sep-center-list li {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--white-60);
    padding: 6px 12px;
    border-left: 2px solid var(--lime);
    text-align: left;
    background: rgba(199, 223, 36, 0.04);
    border-radius: 0 6px 6px 0;
}

.sep-center-footer {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

.sep-center-footer strong {
    color: var(--blue-light);
}

.main-lampara {
    height: 200vh;
    position: relative;
}

.lampara-img {
    width: 100%;
    height: 100dvh;
    object-fit: cover;
    position: sticky;
    top: 0;
    z-index: -1;
    display: block;
}

.discover-section {
    background: var(--bg-mid);
    padding: 100px var(--section-px) 80px;
    position: relative;
    z-index: 2;
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
    margin-top: -60px;
}

.discover-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 55% at 50% 30%, rgba(62, 61, 60, 0.35) 0%, transparent 68%);
    pointer-events: none;
}

.discover-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.discover-eyebrow {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 12px;
    letter-spacing: 5px;
    color: var(--blue-light);
    text-transform: uppercase;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.discover-eyebrow::before,
.discover-eyebrow::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--blue-light);
}

.discover-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 400;
    letter-spacing: 2px;
    margin: 0;
    color: var(--white);
}

.discover-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.discover-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 36px 28px;
    text-decoration: none;
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.35s ease, transform 0.35s ease;
}

.discover-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue-light), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.discover-card:hover::before {
    transform: scaleX(1);
}

.discover-card-icon {
    font-size: 36px;
    line-height: 1;
}

.discover-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1.5px;
    margin: 0;
    color: var(--white);
}

.discover-card-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--white-60);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.discover-card-arrow {
    font-size: 20px;
    color: var(--blue-light);
    transition: transform 0.3s ease;
    align-self: flex-start;
}

.discover-card--cta {
    background: linear-gradient(135deg, rgba(38, 87, 164, 0.3), rgba(199, 223, 36, 0.1));
    border-color: rgba(199, 223, 36, 0.3);
}

.seccion-final {
    background: var(--bg-deep);
    padding: 100px var(--section-px) 80px;
    position: relative;
    overflow: hidden;
}

.final-bg-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 55% at 50% 30%, rgba(38, 87, 164, 0.12) 0%, transparent 68%);
    pointer-events: none;
}

.final-titulo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 400;
    letter-spacing: 2px;
    text-align: center;
    margin: 0 0 40px 0;
    color: var(--white);
}

.carrusel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto 80px;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.4);
}

.carrusel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.65, 0.05, 0, 1);
}

.carrusel-slide {
    min-width: 100%;
    position: relative;
}

.carrusel-slide img,
.carrusel-slide video {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.carrusel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.9), transparent);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--white);
    margin: 0;
}

.carrusel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(199, 223, 36, 0.3);
    border-radius: 50%;
    background: rgba(62, 61, 60, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.carrusel-btn:hover {
    background: rgba(199, 223, 36, 0.4);
    box-shadow: 0 0 20px rgba(199, 223, 36, 0.3);
}

.carrusel-prev {
    left: 16px;
}

.carrusel-next {
    right: 16px;
}

.carrusel-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.carrusel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    padding: 0;
}

.carrusel-dot.active {
    background: var(--white);
    transform: scale(1.3);
}

.final-ubicacion {
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-eyebrow {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--blue-light);
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

.final-direccion {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: var(--white-60);
    line-height: 1.7;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 20px 36px;
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    margin-top: 8px;
}

.final-direccion:hover {
    color: var(--white);
    border-color: rgba(199, 223, 36, 0.3);
}

.rs-global-footer {
    background: #ffffff;
    border-top: 2px solid rgba(38, 87, 164, 0.15);
    padding: 72px var(--section-px) 0;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.06);
}

.rs-global-footer::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 300px;
    background: radial-gradient(ellipse at center,
            rgba(38, 87, 164, 0.04) 0%,
            transparent 70%);
    pointer-events: none;
}

.rs-footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 56px;
    max-width: 1200px;
    margin: 0 auto 56px;
    position: relative;
    z-index: 1;
}

.rs-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rs-footer-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

.rs-footer-tagline {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: rgba(30, 30, 40, 0.6);
    line-height: 1.7;
    max-width: 260px;
    margin: 0;
}

.rs-footer-cta-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.18), rgba(37, 211, 102, 0.08));
    border: 1px solid rgba(37, 211, 102, 0.35);
    border-radius: 40px;
    padding: 12px 22px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
    color: #25d366;
    text-decoration: none;
    width: fit-content;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.rs-footer-cta-wa:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.28), rgba(37, 211, 102, 0.14));
    box-shadow: 0 0 24px rgba(37, 211, 102, 0.2);
    transform: translateY(-2px);
}

.rs-footer-cta-wa svg {
    flex-shrink: 0;
}

.rs-footer-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rs-footer-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 5px;
    color: var(--blue-primary);
    text-transform: uppercase;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rs-footer-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(38, 87, 164, 0.25), transparent);
}

.rs-footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: rgba(30, 30, 40, 0.65);
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.rs-footer-link:last-child {
    border-bottom: none;
}

.rs-footer-link svg {
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity 0.25s ease, color 0.25s ease;
}

.rs-footer-link:hover {
    color: var(--blue-primary);
    padding-left: 6px;
}

.rs-footer-link:hover svg {
    opacity: 1;
    color: var(--blue-primary);
}

.rs-footer-text {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: rgba(30, 30, 40, 0.65);
    line-height: 1.8;
    margin: 0;
}

.rs-footer-address-icon {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 4px;
}

.rs-footer-address-icon svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--lime);
    opacity: 0.7;
}

.rs-footer-sucursales {
    max-width: 1200px;
    margin: 0 auto 48px;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 40px;
}

.rs-footer-sucursales-title {
    margin-bottom: 24px !important;
}

.rs-footer-sucursales-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px 24px;
}

.rs-footer-sucursal {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rs-footer-sucursal strong {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--blue-primary);
}

.rs-footer-sucursal span {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: rgba(30, 30, 40, 0.55);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .rs-footer-sucursales-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .rs-footer-sucursales-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.rs-footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.rs-footer-bottom p {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: rgba(30, 30, 40, 0.45);
    margin: 0;
}

.rs-footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--blue-primary);
    opacity: 0.6;
}

@media (max-width:1200px) {
    .discover-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:900px) {
    .sep-left-bar {
        flex-direction: column;
        align-items: center;
    }

    .sep-left-bar .sep-card {
        max-width: 100%;
    }

    .sep-benefits-card {
        padding: 32px 24px;
    }

    .nueva-seccion {
        flex-direction: column;
        padding: 100px 6vw;
    }

    .ns-image-wrapper {
        display: none;
    }

    .rs-footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width:640px) {
    .rs-footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .rs-footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
}

@media (max-width:600px) {
    .discover-grid {
        grid-template-columns: 1fr;
    }

    .carrusel-slide img,
    .carrusel-slide video {
        height: 280px;
    }
}

.video-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(38, 87, 164, 0.25) 0%, rgba(62, 61, 60, 0.70) 100%);
    z-index: 1;
}

.video-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 var(--section-px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.video-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(56px, 10vw, 120px);
    line-height: 1;
    margin: 0;
    color: var(--white);
    letter-spacing: 0.02em;
}

.video-hero-sub {
    font-size: clamp(16px, 1.8vw, 20px);
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    max-width: 540px;
}

.inicio-price-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(38, 87, 164, 0.15);
    border-top: 1px solid rgba(199, 223, 36, 0.2);
    border-bottom: 1px solid rgba(199, 223, 36, 0.2);
    padding: 40px var(--section-px);
}

.inicio-price-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    padding: 16px 24px;
}

.inicio-price-label {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lime);
    font-weight: 600;
}

.inicio-price-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    color: var(--white);
    line-height: 1;
}

.inicio-price-sub {
    font-size: 13px;
    color: var(--white-60);
    text-align: center;
}

.inicio-price-divider {
    width: 1px;
    height: 70px;
    background: rgba(199, 223, 36, 0.25);
    flex-shrink: 0;
}

.beneficios-section {
    padding: 80px var(--section-px);
    background: radial-gradient(ellipse at 50% 0%, rgba(38, 87, 164, 0.18) 0%, transparent 70%);
}

.beneficios-header {
    text-align: center;
    margin-bottom: 56px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.beneficios-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    margin: 0;
    line-height: 1.1;
    color: var(--white);
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.beneficio-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    border-radius: var(--card-radius);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    cursor: default;
}

.beneficio-icon {
    font-size: 32px;
    line-height: 1;
}

.beneficio-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    margin: 0;
    letter-spacing: 0.04em;
    color: var(--lime);
}

.beneficio-desc {
    font-size: 14px;
    color: var(--white-60);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .inicio-price-banner {
        flex-wrap: wrap;
        gap: 16px;
    }

    .inicio-price-divider {
        display: none;
    }
}

@media (max-width: 580px) {
    .beneficios-grid {
        grid-template-columns: 1fr;
    }

    .video-hero-title {
        font-size: clamp(44px, 14vw, 80px);
    }
}