/* Estilos generales (mantener los del código anterior) */
/* body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
} */

/* --------------------
   Estilos del Encabezado (Header)
   -------------------- */
.header {
       display: flex
;
    padding: 20px;
    margin-top: 33px;
    flex-direction: column;
    align-items: flex-end;
}



.inscripciones a {
    background-color: #6588f0;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.inscripciones a:hover {
    background-color: #5171d3;
}

/* --------------------
   Menú Hamburguesa (Estilos para móvil)
   -------------------- */
.menu-toggle {
    display: none; /* Oculto por defecto en desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 50px;
    height: 25px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1000;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #9adf68;
    transition: all 0.3s ease;
}

/* Ocultar el menú principal en móviles */
.nav-menu {
    display: none; /* Oculto por defecto en desktop */
    justify-content: center;
    align-items: center;
    flex-grow: 1; /* Ocupa el espacio central */
}

/* --------------------
   Estilos del Contenedor del Menú (Grid)
   -------------------- */
.grid-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 0;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Estilos de los ítems del menú (las "casas") */
.grid-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    position: relative;

    background-position: center center;
    /* clip-path: polygon(0 25%, 100% 0, 100% 100%, 0% 100%); */
    transition: transform 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-5px);
}

.grid-item a {
    text-align: center;
    font-size: 1.2rem;
    padding-top: 25px;
    line-height: 1.5;
}

/* Colores de las "casas" */
.inicio { background-color: #0d6efd; }
.nosotros { background-color: #ff8cb8; }
.enfoque { background-color: #fecd4e; }
.beeplay-centro { background-color: #9c65b5; }
.beeplay-nuevo { background-color: #fa8a4a; }
.contacto { background-color: #9adf61; }

/* --------------------
   Media Queries para Responsividad
   -------------------- */

/* Para pantallas de tablet (600px a 1024px) */
@media (max-width: 1200px) {
    .grid-container {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 10px;
    }
    .grid-item {
        clip-path: none;
        border-radius: 10px;
        height: 120px;
        padding-top: 0;
    }
    .grid-item a {
        padding-top: 0;
    }
}

/* Para pantallas de móviles (hasta 599px) */
@media (max-width: 992px) {
    .header {
        justify-content: right;
        padding-right: 2rem;
    }

    .inscripciones {
        display: none; /* Oculta el botón de inscripciones en móvil */
    }

    .nav-menu {
        display: none; /* Oculta el menú por defecto */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* background-color: rgba(255, 255, 255, 0.95); */
        z-index: 999;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}

    .nav-menu.active {
        display: flex; /* Muestra el menú cuando tiene la clase 'active' */
    }

    .grid-container {
        display: grid;
        width: 100%;
        grid-template-columns: 1fr;
        grid-gap: 15px;
        padding: 45px 10px 0 24px;
    }
    
    .grid-item {
        height: 80px;
        width: 100%;
        clip-path: none;
        border-radius: 8px;
        padding-top: 0;
    }

    .grid-item a {
        font-size: 1.5rem;
        padding-top: 0;
        color: #ffffff;
    }

    .menu-toggle {
        display: flex; /* Muestra el botón de hamburguesa en móvil */
    }
}
/* Estilos CSS personalizados */
        .banner-container {
            /* Color de fondo púrpura del ejemplo */
            background-color: #ce67bb; /* Un color púrpura similar */
            color: #f1c40f; /* Color amarillo fuerte para el texto */
            padding: 30px 15px; /* Relleno vertical y horizontal */
            text-align: center;
            position: relative; /* Necesario para posicionar las estrellas */
            overflow: hidden; /* Oculta partes de las estrellas si se salen */
        }

        .banner-text p {
            /* Asegura que el texto esté en negrita (simulando la fuente) y grande */
            font-weight: 900;
            color: #fecd4e;
            font-size: 5.5vw; /* Tamaño de fuente responsivo (ajústalo si es necesario) */
            line-height: 1.2;
            text-transform: uppercase; /* El texto en la imagen parece estar en mayúsculas */
            z-index: 10; /* Asegura que el texto esté por encima de las estrellas */
        }

        .banner-text-low  {
            /* Asegura que el texto esté en negrita (simulando la fuente) y grande */
            font-weight: 900;
            color: #fecd4e;
            font-size: 4vw; /* Tamaño de fuente responsivo (ajústalo si es necesario) */
            line-height: 1.2;
            text-transform: uppercase; /* El texto en la imagen parece estar en mayúsculas */
            z-index: 10; /* Asegura que el texto esté por encima de las estrellas */
        }

        /* Estilo base para las estrellas (usando un símbolo de estrella o SVG) */
        .star {
    /* Color: #f1c40f (amarillo) */
    position: absolute;
    width: 50px; /* Ajusta el tamaño de la estrella */
    height: 50px;
    
    /* ************* REEMPLAZA ESTO ************* */
    background-image: url(../assets/images/star-beeplay-02.svg);
    /* ******************************************* */
    
    background-size: contain;
    background-repeat: no-repeat;
    
    /* El siguiente es opcional si quieres simular el giro del SVG */
    /* transform: rotate(15deg);  */
}

        /* Posicionamiento específico para simular el diseño */
        .star.s1 { top: 9px; left: 23%; font-size: 35px; width: 30px; height: 30px; transform: rotate(-30deg); }
        .star.s2 { top: 45px; left: 28%; font-size: 15px; width: 40px;
    height: 40px;}
        .star.s3 { top: 14px; right: 27%; font-size: 50px; transform: rotate(45deg); }
        .star.s4 { bottom: 114px; right: 21%; font-size: 40px;  width: 30px; height: 30px; transform: rotate(-15deg); }
        .star.s5 { bottom: 60px; left: 20%; font-size: 25px; transform: rotate(20deg); }
        .star.s6 { bottom: 5px; left: 27%; font-size: 18px; width: 40px; height: 40px;}
        .star.s7 { top: 120px; right: 27%; font-size: 12px; width: 40px; height: 40px;}
        .star.s8 { bottom: 30px; right: 23%; font-size: 15px; width: 40px; height: 40px;}



        @media (max-width: 768px) {
 
                    .star.s1 { left: 20%; }
                    .star.s2 { left: 22%; top: 67;}
                    .star.s3 { right: 7%; }
                    .star.s4 { right: 19%; top: 23px; }
                    .star.s5 { left: 4%; }
                    .star.s6 { left: 15%; }
                    .star.s7 { right: 14%; top: 86px;}
                    .star.s8 { right: 23%; }

}
