/* Hero Section Container */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Corta el video excedente */
    color: white;
    text-align: center;
	margin-top: 0;/* Ajuste del Hero para que no se mueva el contenido cuando sube la barra */
}

/* El Video en sí */
#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2; /* Se va al fondo */
    transform: translate(-50%, -50%);
    object-fit: cover; /* Clave para que no se deforme */
}

/* Cuadrícula sobre el video */
.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Crea una malla de puntos sutil */
    background-image: radial-gradient(rgba(255,255,255,0.3) 1px, transparent 1px);
    background-size: 5px 5px; /* Tamaño de la cuadrícula */
    z-index: -1; /* Entre el video y el texto */
}

/* Capa oscura (Overlay) para que el texto resalte */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Ajusta la opacidad según necesites */
    z-index: -1;
}

.hero-content {
    z-index: 1; /* El contenido siempre arriba */
}

.hero-content h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 10vw, 7rem); /* Un poco más grande para Oxitita */
    color: #ffffff;
    letter-spacing: 4px;
    margin-bottom: 5px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.hero-button-calendario {
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border-radius: 0; /* Estilo más cuadrado/agresivo como en la referencia */
    transition: all 0.3s ease;
}

.hero-button-calendario:hover {
    background: white;
    color: black;
    transform: translateY(-3px);
}