﻿/* Estilos para el contenedor de la alerta */
.alert-container {
    position: fixed;
    top: 20px;
    right: 40px;
    z-index: 9999;
}
body{
  background-color:#e1e2e6 !important;
}
.fondo-layout {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(/images/seguridad.jpg);
    background-size: cover; /* Escala la imagen para que cubra toda la pantalla */
    background-repeat: no-repeat; /* Evita que la imagen se repita */
    background-attachment: fixed; /* Mantiene la imagen fija al hacer scroll */
    background-position: center; /* Centra la imagen en la pantalla */
    background-color: #000; /* Color de respaldo */
    color: #fff; /* Color del texto */
}
.mud-tabs-tabbar {
    position: relative;
    background-color: black !important;
}
    /* Estilos de la alerta */
.alert-success {
    background-color: #4CAF50; /* Color verde para éxito */
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.alert-error {
    background-color: #f44336; /* Color rojo para error */
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-weight: bold;
    margin-left: 10px;
    cursor: pointer;
}


.boton-home {
    width: 250px;
    height: 55px;
    border: 2px solid white !important;
}
/* Oculta el footer al cargar la página */
.hidden {
    display: none;
}
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}
.logoinfo {
    width: 80px; /* Ajusta el tamaño según lo pequeño que necesites */
    height: 80px; /* Debe ser igual al ancho para hacerla circular */
    border-radius: 50%; /* Hace que la imagen se vea redonda */
    overflow: hidden; /* Oculta cualquier parte que sobresalga */
    object-fit: cover; /* Ajusta la imagen para llenar el contenedor manteniendo el aspecto */
}

.mud-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Asegura que el layout ocupe toda la altura de la pantalla */
}

.mud-main-content {
    flex: 1; /* Permite que el contenido principal ocupe el espacio disponible */
}

footer {
    background-color: rgb(11, 11, 51);
    color:white;
    padding: 1rem;
    text-align: center;
}

/* From Uiverse.io by xantha01 */
.swipe {
    position: relative;
    background-color: transparent;
    width: 250px;
    height: 60px;
    color: white;
    border-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    letter-spacing: 2px;
    border-top: 0.5px solid white;
    border-left: 0.5px solid white;
    padding-left: 40px;
    cursor: pointer;
    transition: 0.35s ease;
}

    .swipe:hover {
        padding-left: 0;
        padding-right: 40px;
        color: white;
    }

.container-home {
    position: absolute;
    left: 5px;
    width: 50px;
    height: 50px;
    background: #7AB5B7;
    border-radius: 50%;
    transition: 0.35s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f1f4f7;
}

.swipe:hover .container-home {
    left: calc(100% - 55px);
    color: #324B4C;
}

/* Tamaño predeterminado (dispositivos grandes y pantallas de escritorio) */
.textohome {
    font-size: 1.3rem !important; /* Tamaño inicial */
    white-space: nowrap; /* Evita el salto de línea */
    overflow: hidden; /* Oculta el texto que se sale del contenedor */
    text-overflow: ellipsis; /* Muestra puntos suspensivos si el texto no cabe */
}

/* Tamaño reducido para dispositivos pequeños (teléfonos pequeños) */
@media (max-width: 576px) {
    .textohome {
        font-size: 0.5rem !important; /* Tamaño más pequeño */
    }
}

/* Tamaño intermedio para dispositivos medianos (teléfonos grandes y tablets pequeñas) */
@media (min-width: 577px) and (max-width: 768px) {
    .textohome {
        font-size: 0.9rem !important; /* Tamaño intermedio */
    }
}

/* Tamaño para dispositivos grandes (tablets grandes y laptops pequeñas) */
@media (min-width: 769px) and (max-width: 992px) {
    .textohome {
        font-size: 1.2rem !important; /* Tamaño ligeramente mayor */
    }
}

/* Tamaño para pantallas extra grandes (desktops grandes) */
@media (min-width: 993px) {
    .textohome {
        font-size: 1.3rem !important; /* Tamaño estándar */
    }
}


/* Fondo sutil para el contenedor específico del programa */
.programa-container {
    /*background-color: #f9f9f9;*/
}

/* Estilos para el título del día específico de 'Programa' */
.programa-title {
    color: #594ae2; /* Color morado */
    font-weight: bold;
    margin-bottom: 20px;
}

/* Estilo para los eventos dentro de 'Programa' */
.programa-item {
    background-color: #ffffff; /* Blanco */
    border-left: 5px solid #594ae2; /* Barra morada a la izquierda */
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

/* Estilo para los días específicos del 'Programa' */
.programa-day {
    background-color: #f0f4f8;
    border-radius: 8px;
    padding: 20px;
}

/* Texto adicional */
.programa-body2 {
    font-size: 14px;
    color: #666666;
}

/* Estilo para la imagen de cada evento en 'Programa' (opcional) */
.programa-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 10px;
}

.imagen-header {
    position: relative;
    text-align: center;
    color: black;
    padding: 0;
    background-color: rgb(1, 1, 34);
    background-image: url(images/hacker.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    justify-content: center;
}

.dynamic-height {
    height: 100%; /* Asegura que el contenedor ocupe toda la altura */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

@media (max-width: 768px) {
    .dynamic-height {
        height: 210px;  Altura para dispositivos pequeños 
    }
}

.carousel-content {
    height: 100%;
    flex-direction: column;
   
}

.centrado-texto {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    align-content: center;
}

