/* video-hero.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700;900&family=Inter:wght@300;400;600&display=swap');

:root {
    --primary: #ff0055;
    --secondary: #ffd700;
    --accent: #00f2ff;
    --dark: #0a0a0b;
    --dark-alt: #16161a;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    background: var(--dark) url('assets/geometric_bg.png') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

section {
    padding: 100px 5%;
}

h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

#hero-container {
    position: relative;
    width: 100%;
    height: 85vh;
    background: var(--dark);
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.8);
}

.brand-logo {
    position: absolute;
    top: 30px;
    left: 5%;
    height: 90px;
    z-index: 100;
    transition: all 0.4s ease;
    filter: invert(1) hue-rotate(180deg);
    mix-blend-mode: screen;
}

.brand-logo:hover {
    transform: scale(1.05);
    filter: invert(1) hue-rotate(180deg) drop-shadow(0 0 10px rgba(0, 242, 255, 0.3));
}

@media (max-width: 768px) {
    .brand-logo {
        height: 45px;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
    }

    .brand-logo:hover {
        transform: translateX(-50%) scale(1.05);
    }
}

/* Curved TV Effect Overlay */
#hero-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.4) 70%, rgba(0, 0, 0, 0.8) 100%);
    box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.9);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
    transform: scale(1.1);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 2rem;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    background: var(--secondary);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 45px rgba(255, 215, 0, 0.5);
    background: #fff;
}

/* Phase specifics */
.slide-1 .hero-title {
    color: var(--accent);
}

.slide-2 .hero-title {
    font-family: 'Inter', serif;
    font-style: italic;
    color: var(--secondary);
}

.slide-3 {
    background: linear-gradient(to bottom, #fff, #888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

/* Pasos / Numbers styling */
.price-val {
    font-family: 'Outfit', sans-serif;
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 15px;
    opacity: 0.9;
    letter-spacing: -3px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .price-val {
        font-size: 4rem;
    }
}

/* Pricing Section */
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.price-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    text-align: center;
    position: relative;
    padding-top: 60px;
}

.card-badge {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--glass-border);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-card.featured {
    border: 2px solid var(--accent);
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 0 50px rgba(0, 242, 255, 0.2);
}

.price-card.featured .card-badge {
    background: var(--accent);
    color: #000;
}

.price-options {
    margin: 30px 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--glass-border);
}

.price-item .duration {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.price-item .val {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.price-item.best-value {
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    margin: 10px -40px;
    padding: 12px 40px;
    border: none;
    position: relative;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.price-item.best-value .val {
    color: var(--secondary);
    font-size: 1.8rem;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.price-item.best-value .save {
    position: absolute;
    bottom: -5px;
    right: 40px;
    font-size: 0.7rem;
    color: var(--accent);
    font-weight: 900;
}

/* Testimonials */
.testimonial-card {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

/* Accordion Custom */
.accordion-button {
    background: var(--dark-alt) !important;
    color: #fff !important;
    border: none !important;
}

.accordion-item {
    background: var(--dark-alt) !important;
    border: 1px solid var(--glass-border) !important;
    margin-bottom: 10px;
    border-radius: 12px !important;
    overflow: hidden;
}

.accordion-body {
    color: rgba(255, 255, 255, 0.7);
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}