.hero {
    position: relative;
    overflow: hidden;    
    background: var(--background-color-secondary);
    color: var(--default-color);
    min-height: calc(100vh - 85px);
    display: flex;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* EFECTO ACTIVE ADICIONAL */
.hero .btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(255,120,70,.3);
}



/* MOCKUP */
.product-mockup {
    position: relative;
}

/* FLOATING CARDS */
.floating-card {
    position: absolute;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.08);
    animation: float 6s ease-in-out infinite;
}

.card-1 { top: 20%; left: -40px; }
.card-2 { top: 60%; right: -30px; animation-delay: 2s; }
.card-3 { bottom: 10%; left: -20px; animation-delay: 4s; }

.card-value {
    font-weight: bold;
    font-size: 18px;
}

.card-label {
    font-size: 12px;
    opacity: .7;
}

/* VIDEO BACKGROUND */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 22, 35, 0.85);
    z-index: 1;
}

/* Asegurar que el contenido esté sobre el video */
.hero .container {
    position: relative;
    z-index: 2;
}

/* BACKGROUND EFFECTS */
.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: #2f9fb833;
    top: -150px;
    right: -150px;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: #ff8e5333;
    bottom: -150px;
    left: -150px;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.banner-logo{
    width: auto;
    max-width: 100%;
}

@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes float-center {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-12px); }
}


@media (max-width: 768px) {

    .hero-visual {
        margin-top: 1rem;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .product-mockup {
        position: relative;
    }

    .floating-card {
        transform: none;
    }

    /* escalera responsive */
    .card-1 {
        top: 5%;
        left: 5%;
    }

    .card-2 {
        top: 45%;
        left: 50%;
        transform: translateX(-50%);
        animation: float-center 6s ease-in-out infinite;
    }

    .card-3 {
        bottom: -10px;
        right: 5%;
        left: auto;
    }

}


@media (max-width: 992px) {
    .hero-buttons {
        justify-content: center;
    }
}

