@charset "UTF-8";
/* CSS Document */
/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    background-image: url("images/articulos-17752.jpg"); /* Fondo de la página */
    background-size: cover;
    background-attachment: fixed;
    color: #333;
	overflow-x: hidden;
	width: 100%;
    margin: 0;
    padding: 0;
	
}


/* Cabecera con logo */
.cabecera {
    background-color: #9DCEFF; /* Azul oscuro */
    padding: 20px;
    text-align: center;
}

.cabecera .logo {
    max-width: 150px;
}

/* Slider de imágenes */

.slider {
    display: flex;
    width: 200%; /* 4 imágenes al 50% = 200% del ancho del contenedor */
    animation: slide 16s infinite; /* Animación de 16 segundos (4 segundos por imagen) */
}

/* Imágenes del slider */
.slider img {
    width: 50%; /* Cada imagen ocupa el 50% del contenedor */
    height: 100%; /* Ocupa el 100% del alto del contenedor */
    flex-shrink: 0; /* Evita que las imágenes se reduzcan */
    object-fit: cover; /* Ajusta la imagen para cubrir el contenedor sin deformarse */
}

/* Animación del slider */
@keyframes slide {
    0% { transform: translateX(0); } /* Primera imagen */
    25% { transform: translateX(-50%); } /* Segunda imagen */
    50% { transform: translateX(-100%); } /* Tercera imagen */
    75% { transform: translateX(-150%); } /* Cuarta imagen */
    100% { transform: translateX(0); } /* Vuelve a la primera imagen */
}

/* Contenedor del slider */
.slider-container {
    width: 100%;
    max-width: 80%; /* Ocupa el 80% del ancho */
    margin: 80px auto; /* Centrar el slider */
    overflow: hidden; /* Oculta el desbordamiento */
    position: relative;
    border: 2px solid #ccc; /* Borde opcional para mejor visualización */
    border-radius: 10px; /* Bordes redondeados */
    aspect-ratio: 2 / 1; /* Hace que el contenedor sea rectanglar */
}

/* Menú desplegable */

nav {
    background-color: #3b6ea5; /* Turquesa medio */
    padding: 10px;
    position: relative;
    z-index: 1000; /* Asegura que el menú esté por delante del slider */
}

#menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

.menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
}

.menu li {
    position: relative;
}

.menu li a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    transition: background-color 0.3s ease;
}

.menu li a:hover {
    background-color: #3b6ea5; /* Azul claro */
    font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", "Arial Black", "sans-serif";
}

.menu li .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #2c4a6e; /* Azul medio */
    list-style: none;
    padding: 0;
    margin: 0;
    width: 200px;
}

.menu li:hover .submenu {
    display: block;
}

.menu li .submenu li a {
    padding: 10px;
    display: block;
}

.menu li .submenu li a:hover {
    background-color: #3b6ea5; /* Azul claro */
}

/* Estilos para dispositivos móviles */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
		
    }
	
@media (max-width: 768px) {
    .noticia {
        width: 100%; /* Ocupa el 100% del ancho en móviles */
        margin-bottom: 20px; /* Espacio entre noticias */
    }
}
	@media (max-width: 768px) {
    .banner-animado {
        font-size: 14px; /* Reducir el tamaño del texto */
        padding: 5px; /* Reducir el padding */
    }

    .texto-animado {
		display: inline-block;
		white-space: nowrap;
        animation: moverTexto 10s linear infinite; /* Acelerar la animación */
    }
}

    .menu {
        display: none;
        flex-direction: column;
        background-color: #2c4a6e; /* Azul medio */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
    }

    .menu li {
        text-align: center;
    }

    .menu li .submenu {
        position: static;
        width: 100%;
    }

    #menu-toggle:checked ~ .menu {
        display: flex;
    }
}

/* Contenido principal */
main {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    margin: 20px;
    border-radius: 10px;
}

/* Noticia Principal */
.noticia-destacada {
    text-align: center;
    margin-bottom: 40px;
}

.noticia-destacada h1 {
    font-size: 2.5em;
    color: #1e3a5f; /* Azul oscuro */
}

.noticia-destacada img {
    max-width: 100%;
    border-radius: 10px;
}

.noticia-destacada p {
    font-size: 15pt;
    margin: 20px 0;
    font-weight: bolder;
}

.noticia-destacada a {
    background-color: #1e3a5f; /* Azul oscuro */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.noticia-destacada a:hover {
    background-color: #3b6ea5; /* Azul claro */
}

/* Noticias Secundarias */
.noticias-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.noticia {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 30%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.noticia:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.noticia img {
    max-width: 100%;
    border-radius: 10px;
}

.noticia h3 {
    font-size: 20px;
    color: #1e3a5f; /* Azul oscuro */
}

.noticia p {
    font-size: 1em;
    margin: 10px 0;
    font-style: italic;
}

.noticia a {
    background-color: #3b6ea5; /* Turquesa oscuro */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: inline-block; /* Asegura que el botón no se solape */
    margin-top: 10px; /* Espacio adicional */
}

.noticia a:hover {
    background-color: #3b6ea5; /* Azul claro */
}

/* Banner animado */
.banner-animado {
    background-color: #9DCEFF; /* Azul oscuro */
    color: white;
    padding: 10px;
    text-align: center;
    position: sticky;
    bottom: 0;
	left: 0;
    width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	white-space: nowrap;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif"
}

.texto-animado {
	display: inline-block;
    padding-left: 100%;
    animation: moverTexto 10s linear infinite;
}

@keyframes moverTexto {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Footer */
footer {
    background-color: #3b6ea5; /* Azul oscuro */
    color: white;
    text-align: center;
    padding: 20px;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
}

.social-icons img {
    width: 24px;
    margin: 0 10px;
}

/* Botón de subir */
.back-to-top {
    position: fixed;
    bottom: 60px; /* Ajustado para no chocar con el banner */
    right: 20px;
    background-color: #009CFF; /* Azul claro */
    color: white;
    padding: 10px;
    text-decoration: none;
    border-radius: 50%;
    display: none;
    transition: background-color 0.3s ease;
}

.back-to-top:hover {
    background-color: #9DCEFF; /* Azul oscuro */
}

/* Contenedor de la imagen */
.imagen-contenedor {
    width: 100%; /* Ocupa el 100% del ancho del contenedor padre */
    aspect-ratio: 16 / 9; /* Proporción de la imagen (ajusta según tus necesidades) */
    overflow: hidden; /* Oculta cualquier parte de la imagen que sobresalga */
    border-radius: 10px; /* Bordes redondeados (opcional) */
}

/* Imágenes */
.imagen-contenedor img {
    width: 100%; /* Ocupa el 100% del ancho del contenedor */
    height: 100%; /* Ocupa el 100% del alto del contenedor */
    object-fit: cover; /* Cubre el contenedor sin deformarse */
}

/* Estilos para móviles */
@media (max-width: 768px) {
    body {
        font-size: 16px !important; /* Fuerza el tamaño de fuente */
    }

    h1 {
        font-size: 2rem !important; /* Fuerza el tamaño de fuente */
    }

    h2 {
        font-size: 1.8rem !important; /* Fuerza el tamaño de fuente */
    }

    p {
        font-size: 0.9rem !important; /* Fuerza el tamaño de fuente */
        line-height: 1.6; /* Aumenta el interlineado */
    }

    .noticia {
        width: 100%; /* Ocupa el 100% del ancho */
        padding: 15px; /* Espaciado interno */
        box-sizing: border-box; /* Incluye el padding en el ancho */
    }

    .noticia h3 {
        font-size: 1.2rem !important; /* Reduce el tamaño de fuente */
    }

    .noticia p {
        font-size: 0.9rem !important; /* Reduce el tamaño de fuente */
        line-height: 1.6; /* Aumenta el interlineado */
    }
}

