﻿/* ============================
   LANDING SUPER MINIMALISTA
   ============================ */

/* Contenedor principal */
.landing-wrapper {
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Hero más pequeño */
.hero-container {
    position: relative;
    width: 100%;
    height: 60vh; /* antes 100vh */
    overflow: hidden;
}

/* Video */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.70);
    z-index: 0;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(3px);
    z-index: 1;
}

/* Contenido centrado */
.hero-content {
    position: relative;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
}

/* Logo principal más pequeño */
.hero-logo {
    width: 150px; /* antes 260px */
    margin-bottom: 12px;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.35));
}

/* Logo secundario más pequeño */
.hero-logo-small {
    width: 100px; /* antes 180px */
    margin-top: 6px;
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.30));
}

/* Subtítulos minimalistas */
.hero-subtitle {
    font-size: 16px; /* antes 22px */
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 4px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.35);
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.animate-fade-in-delay {
    animation: fadeIn 1.3s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 1.2s ease-out forwards;
}

.enter-btn {
    padding: 6px 18px;
    font-size: 13px;
    border-radius: 8px;
    background: rgba(255,255,255,0.15);
}
