/* RESET GENERAL */
* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: "Roboto", sans-serif; color: #C4C4C4;
}

body {
    background-color: #1a1a1a;
    background-image: linear-gradient(33deg, transparent 0%, transparent 8%,rgba(81,81,81, 0.02) 8%, rgba(81,81,81, 0.02) 59%,transparent 59%, transparent 100%),
                      linear-gradient(90deg, rgb(24,24,24),rgb(24,24,24));
    min-height: 100vh;
    display: flex; flex-direction: column;
}

/* HEADER */
header {
    position: sticky; top: 0; width: 100%; background: #111;
    min-height: 8vh; z-index: 1000; display: flex; justify-content: center;
    box-shadow: 0 5px 30px #000;
}

#header-inner { width: 90%; max-width: 1400px; display: flex; justify-content: space-between; align-items: center; }
#logo { max-height: 6vh; }

#header-nav { display: flex; align-items: center; gap: 20px; }
#header-nav a, #blog-active {
    text-decoration: none; font-size: 15px; padding: 10px 15px; transition: 0.3s; text-transform: uppercase;
}

#blog-active { border-bottom: 2px solid #A67C00; background: #222; }

/* BOTÓN RAINBOW */
.btn-rainbow {
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    background-size: 400%; color: white !important; border-radius: 5px; font-weight: bold;
    animation: rainbow_animation 10s linear infinite;
}
@keyframes rainbow_animation { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

/* MENU HAMBURGUESA */
#menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
#menu-toggle span { width: 25px; height: 3px; background: #A67C00; }

/* CONTENIDO */
.main-content { flex: 1 0 auto; padding: 60px 7%; max-width: 1400px; margin: 0 auto; }
.dorado-titulo-principal { font-size: clamp(35px, 7vw, 70px); text-align: center; margin-bottom: 50px; }
.letra-dorada { background: linear-gradient(to right, #A67C00, #e6b421, #A67C00); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

#blog-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }

/* TARJETAS */
.tarjeta-info {
    background: rgba(40, 40, 40, 0.4); border: 1px solid #333; border-radius: 20px;
    overflow: hidden; transition: 0.4s; position: relative;
}
.tarjeta-info:hover { transform: translateY(-10px); border-color: #A67C00; }
.noticia-img-container { height: 220px; width: 100%; overflow: hidden; }
.noticia-imagen { width: 100%; height: 100%; object-fit: cover; }
.contenido-tarjeta { padding: 25px; }
.dorado-titulo { color: #e6b421; font-size: 20px; margin: 10px 0; }
.meta-data { font-size: 12px; color: #888; }
.texto-descripcion { font-size: 14px; line-height: 1.6; }

/* PUNTITOS DECORATIVOS */
.puntitos { width: 100px; height: 100px; background-image: radial-gradient(#444 1px, transparent 1px); background-size: 10px 10px; position: absolute; z-index: -1; opacity: 0.5; }
.puntitos-br { bottom: 10px; right: 10px; }
.puntitos-bl { bottom: 10px; left: 10px; }

/* FOOTER */
footer { background: #0d0d0d; padding: 40px 7% 20px; border-top: 2px solid #A67C00; }
#footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.footer-logo-img { width: 180px; margin-bottom: 15px; }
.footer-list { list-style: none; }
.footer-list li { font-size: 14px; margin-bottom: 8px; }
#copyright { text-align: center; margin-top: 30px; padding-top: 20px; border-top: 1px solid #222; font-size: 12px; color: #555; }

/* MOVIL */
@media (max-width: 900px) {
    #menu-toggle { display: flex; }
    #header-nav {
        display: none; position: absolute; top: 100%; left: 0; width: 100%;
        background: #111; flex-direction: column; padding: 20px; border-bottom: 2px solid #A67C00;
    }
    #header-nav.active { display: flex; }
    footer { padding: 30px 5% 15px; }
    #footer-grid p, .footer-list li { font-size: 13px; }
}