:root {
    --bg: #0f172a;
    --surface: #111827;
    --accent: #3b82f6;
    --accent2: #8b5cf6;
    --text: #e5e7eb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Bloqueo de Arrastre */
img {
-webkit-user-drag: none;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    scroll-behavior: smooth;

    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}


/*--------------------------------------------------------------------------------------------*/
/* NAVBAR                                                                                     */
/*--------------------------------------------------------------------------------------------*/
.logo img {
    height: 40px; /* Ajusta la altura según el diseño de tu nav */
    width: auto;  /* Mantiene la proporción original */
    display: block;
}

.nav-container {
    display: flex;
    align-items: center; /* Centra verticalmente el logo con los links */
}


/*--------------------------------------------------------------------------------------------*/
/*PROPIEDADES DEL NAV                                                                         */
/*--------------------------------------------------------------------------------------------*/
.nav {
    position: fixed;
    width: 100%;
    background: rgba(27, 39, 65, 0.8);
    backdrop-filter: blur(12px);
    padding: 0.1rem 0;
    z-index: 10;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav a {
    text-decoration: none;
    color: var(--text);
}
.nav a:hover {
    color: var(--accent); /* Cambia al color azul de los titulos */
}


/*-----------------------------------------------------------------------------*/
/* ESTILOS DEL BLOG */
/*-----------------------------------------------------------------------------*/

/* Grilla de Galería (Responsiva) */

.enconstruccion {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 80px);  /* altura real disponible */
    margin-top: 80px;                /* empuja el contenido bajo el nav */
}

.enconstruccion img {
    max-width: 520px;
    width: 100%;
    height: auto;
    display: block;

    border-radius: 14px;
    background: rgba(63, 112, 190, 0.15);
    border: 2px solid rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.15);
    padding: 1rem;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.enconstruccion img:hover {
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(0, 200, 255, 0.5);
}


/*-----------------------------------------------------------------------------*/
/* FOOTER  */
/*-----------------------------------------------------------------------------*/
.footer {
    /*background: var(--surface); /* color de fondo de sección */
    background: rgba(27, 39, 65, 0.8); /* mismo color que NavBar */
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-content p {
    color: rgba(229, 231, 235, 0.6); /*Un gris suave */
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent); /* Cambia al color azul de tu paleta */
}
