
.accordion {
    display: none;
    margin-top: 10px;
    text-align: left;
    max-height: 0;
    width: 100%;
    
    overflow: hidden;
    transition: max-height 0.5s ease;  
}


.color-texto{
    color:#ffff
}    

.accordion.open {
    max-height: 150px;
} 



        /* Estilos para el div */
        #program-details {
            position: fixed;
            margin: 0 auto;
            bottom: 0;
            left: 0;
            right: 0;
            
            width:99%;  
            
            overflow: hidden;
            max-height:0; 
            transition: max-height 0.5s ease; /* Transición suave */
            /* background-color: #2a4b69;  */
            background-color: rgba(0, 0, 0, 0.7); /* Fondo oscuro translúcido */
            /* filter: blur(3px); */
            box-sizing: border-box; /* Incluye el borde dentro de las dimensiones */
            /* opacity: 0.9; */
            padding: 0px 10px;
                       
            
            /* border: 1px solid #ccc; */
            /* border-radius: 5px; */
            /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
            z-index: 101;
        }

        /* Estilo del contenido visible al abrir */
        #program-details.open {
            max-height: 150px; /* Altura máxima al abrir */
            color:#ffff;
        }

/* Botón de cerrar (X) */
.cerrar {
    position: absolute;
    top: 10px;
    right: 30px;
    font-size: 20px;
    font-weight: bold;
    color: #ffff;
    z-index: 51; /* Más alto que el contenido del acordeón */
}

.cerrar:hover {
    cursor: pointer;
    transform: scale(1.2); /* Aumenta el tamaño al pasar el mouse */
}


.arrow {

    position: absolute;
    bottom: -15px; /* Ajusta esta posición según sea necesario */
    left:150px;
    cursor: pointer;
    font-size: 35px;
    color:#383939cf;
    font-weight: bold;
    margin-top: 10px;
    z-index: 15;
   
}

.arrow:hover{
    color:#c76e4b;
}

.program{
    padding-bottom: 12px;
}



/* Quitar subrayado y color azul de los enlaces */
.link_a {
  text-decoration: none;  /* Elimina el subrayado */
  color: inherit;         /* Hereda el color del texto de su contenedor */
}

/* Opcional: También puedes quitar el color del enlace cuando se pasa el ratón (hover) */
.link_a:hover {
  color: inherit;         /* Hereda el color del texto del contenedor al pasar el ratón */
  text-decoration: none;  /* Asegura que no haya subrayado al pasar el ratón */
  cursor: pointer;
}

/* Opcional: También puedes quitar el color cuando el enlace ha sido visitado */
.link_a:visited {
  color: inherit;         /* Hereda el color del texto del contenedor */
}





/* botones */
.icon-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    /* z-index: 150; */
    
}

.icon {
     


    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px; /* Tamaño cuadrado */
    height: 100px; /* Tamaño cuadrado */
    background-color: #f5f5f5; /* Color de fondo suave */
    border: 2px solid #e0e0e0; /* Borde sutil */
    border-radius: 10px; /* Esquinas ligeramente redondeadas */
    cursor: pointer; /* Indica que es interactivo */
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra sutil */
    z-index: 103;




}

.icon i {
    font-size: 32px;
    color: #063e73; /* Color del ícono */
    margin-bottom: 5px;
}

.icon:hover {
    transform: scale(1.1);
    color: #c76e4b;
    background-color: #e3f2fd; /* Color de fondo al pasar el cursor */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2); /* Sombra más prominente */
    border-color: #2196f3; /* Cambia el color del borde */
}

.icon:active {
    transform: scale(0.95); /* Pequeña contracción al hacer clic */
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .icon {
        width: 80px;
        height: 80px;
    }

    .icon i {
        font-size: 28px;
    }

    .icon p {
        font-size: 12px;
    }
}



