/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: black;
    overflow-x: hidden;
    color: white;
}

/* Logo superior */
.logo-container {
    position: absolute;
    top: 20px;
    width: 100%;
    text-align: center;
    z-index: 3;
}

.logo {
    max-width: 150px;
    height: auto;
}

/* Masthead */
.masthead {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.masthead-content {
    z-index: 2;
    padding: 20px;
    color: white;
}

.masthead-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.masthead-content p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Recuadro de bases */
.bases-container {
    width: 90%;
    max-width: 600px;
    height: 250px; /* Puedes ajustar aquí la altura */
    overflow: hidden;
    background: rgba(255, 255, 255, 0.2);
    margin: 20px auto;
    padding: 10px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    position: relative;
}

/* Contenido que se mueve */
.bases-scroll {
    display: flex;
    flex-direction: column;
    animation: scroll-up 40s linear infinite; /* Ajusta 30s para velocidad más lenta */
}

/* Scroll automático vertical */
@keyframes scroll-up {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

/* Botón de Instagram */
.instagram-link {
    display: inline-block;
    margin-top: 20px;
    font-size: 1.2rem;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.instagram-link i {
    margin-right: 10px;
}

.instagram-link:hover {
    background: white;
    color: black;
}

/* Video de fondo */
.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.7;
}

/* Responsive: Ajustar en celulares */
@media (max-width: 600px) {
    .bases-container {
        height: 200px;
    }
    .bases-scroll p {
        font-size: 0.9rem;
    }
}

