@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

/* ===== ESTILOS ORIGINALES (EXACTAMENTE IGUAL) ===== */
* {
    background-color: black;
}

nav {
    display: flex;
    justify-content: right;
    position: fixed;
    width: 100%;
    height: 70px;
    background-color: white;
    margin: 0px;
    top: 0%;
    left: 0%;
}

.div_logo_barra {
    background-color: white;
}

.logo {
    height: 50px;
    align-items: center;
    margin-top: 10px;
    margin-left: 50px;
    margin-right: 50px;
    background-color: white;
}


.cuerpo {
    display: flex;
    height: 400px;
    width: 100;
    justify-content: center;
    margin-top: 300px;
}

h1 {
    text-align: center;
    font-family: "Space Grotesk", serif;
    color: #bffa00;
}

p {
    font-family: "Space Grotesk", serif;
    color: black;
}

.text {
    margin-top: 80px;
}

.reel {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 70px;
    padding: 0px;
}

.logo2 { 
    height: 100px;
    z-index: 1;
    position: absolute;
}

/* ===== SOLO CAMBIOS PARA MÓVIL (media queries) ===== */
@media (max-width: 768px) {
    /* Ajuste del logo en nav */
    .logo {
        margin-left: 25px;  /* Reducción ligera para móvil */
        margin-right: 25px; /* Reducción ligera para móvil */
        height: 45px;       /* Pequeño ajuste de tamaño */
    }

    /* Ajustes de layout para móvil */
    .cuerpo {
        margin-top: 50%;  /* Menos espacio superior */
        height: 100px;       /* Altura flexible */
    }
    .centro{
        height: 150px
    }

    h1 {
        margin-top: 15%;
        text-align: center;
        font-family: "Space Grotesk", serif;
        font-size: 1.5rem;
        margin-right: 15%;
        margin-left: 15%;
    }
}

@media (max-width: 480px) {
    /* Ajustes adicionales para móviles pequeños */
    .logo {
        margin-left: 15px;
        margin-right: 15px;
        height: 40px;
    }

    .cuerpo {
        margin-top: 50%;
    }

    .centro{
        height: 100px
    }

    h1 {
        text-align: center;
        font-family: "Space Grotesk", serif;
        font-size: 1rem;
        margin-right: 15%;
        margin-left: 15%;
    
    }
}



