@charset "utf-8";
/* CSS Document */
    /* =======================================================
       1. CONFIGURACIÓN GLOBAL (HTML & BODY)
       ======================================================= */
    html {
        scroll-behavior: smooth;
    }

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

    body {
        font-family: "Jost", sans-serif;
        background-color: #1a0f0a;
        color: #ffffff;
        overflow-x: hidden;
        line-height: 1.5;
    }

    h1, h2, h3, h4, .brand-font {
        font-family: "Jost", sans-serif;
    }

    .gold-gradient {
        background: linear-gradient(45deg, #d4af37, #f1c40f, #9a7b0c);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
    }
	.titulo-seccion {
    font-family: "Jost", sans-serif;
				  font-optical-sizing: auto;
				  font-weight: 400;
				  font-style: normal;
    font-size: 2rem;
    letter-spacing: 8px;
    margin-bottom: 10px;
	}
 
    /* =======================================================
       2. CABECERA (HEADER COMPLETO)
       ======================================================= */
    .header-principal {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        padding: 15px 0;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        background-color: rgba(19, 18, 16, 0); 
    }

    .header-principal.scrolled {
        padding: 8px 0;
        background-color: rgba(19, 18, 16, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    }

    .contenedor-header {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
    }

    .logo-brand { display: flex; align-items: center; gap: 10px; }
    .img-logo { height: 45px; border: 1.5px solid #d4af37; border-radius: 50%; }
    .brand-name { font-family: "Jost", sans-serif;
				  font-optical-sizing: auto;
				  font-weight: 400;
				  font-style: normal; font-size: 1.4rem; letter-spacing: 2px;  }

/* =======================================================
   NAVEGACIÓN ESCRITORIO
   ======================================================= */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-menu a:hover { 
    color: #d4af37; 
}

/* Contenedor de Idiomas Escritorio */
.idiomas-wrapper { 
    display: flex; 
    gap: 12px; 
    align-items: center;
}

.mobile-menu-btn { 
    display: none; 
    background: none; 
    border: none; 
    color: #d4af37; 
    font-size: 1.5rem; 
    cursor: pointer; 
}

/* =======================================================
   ESTILO UNIVERSAL PARA BANDERAS (Escritorio y Móvil)
   ======================================================= */
.idiomas-wrapper img, 
.idiomas-mobile img {
    width: 30px; /* Tamaño consistente */
    height: 20px;
    object-fit: cover;
    border-radius: 3px;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    filter: grayscale(40%) opacity(0.7); /* Estado inactivo */
    cursor: pointer;
    display: block;
}

/* Estado al pasar el ratón o bandera activa */
.idiomas-wrapper img:hover, 
.idiomas-mobile img:hover,
.idiomas-wrapper a.active img, 
.idiomas-mobile a.active img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
    border-color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* =======================================================
   MENÚ RESPONSIVE MÓVIL
   ======================================================= */
@media (max-width: 992px) {
    .mobile-menu-btn { 
        display: block; 
        z-index: 1001; 
    }
    
    .nav-menu {
        display: none; 
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100vh;
        background-color: rgba(19, 18, 16, 0.98);
        backdrop-filter: blur(15px);
        z-index: 1000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .nav-menu.active { 
        display: flex !important; 
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 35px;
        text-align: center;
        margin-bottom: 40px;
    }

    .nav-menu a {
        color: #d4af37;
        font-size: 1.6rem;
        
        letter-spacing: 3px;
    }

    /* Ajuste de Idiomas en Móvil */
    .idiomas-mobile { 
        display: flex; 
        gap: 20px; 
        justify-content: center;
        padding-top: 20px;
        border-top: 1px solid rgba(212, 175, 55, 0.1);
        width: 60%;
    }

    .idiomas-wrapper { 
        display: none; 
    }
}

/* Ocultar contenedor móvil en pantallas grandes */
@media (min-width: 993px) { 
    .idiomas-mobile { 
        display: none; 
    } 
}
/* =======================================================
   4. FOOTER (UNIFICADO Y RESPONSIVE)
   ======================================================= */
footer {
    background-color: #131210;
    padding: 60px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

footer .contenedor {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Columna Izquierda: Logo a la IZQUIERDA del texto en Escritorio */
footer .col-izquierda {
    flex: 0 1 auto;
    display: flex;
    flex-direction: row; /* Alineación horizontal */
    align-items: center;
    gap: 20px;           /* Espacio entre logo y texto */
}

/* Bloque de texto (Dirección + Teléfono) */
.info-contacto {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.text-stone-500 { 
    color: #78716c; 
    font-size: 0.85rem; 
    margin: 0; 
}

/* Teléfono e Icono */
.enlace-telefono {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
    font-size: 0.85rem;
}

/* Redes Sociales */
.redes-sociales-footer { display: flex; gap: 25px; }
.enlace-social {
    color: #cccccc;
    font-size: 20px;
    transition: 0.4s;
}
.enlace-social:hover {
    color: #ffffff;
    transform: scale(1.2);
    text-shadow: 0 0 15px rgba(255,255,255,0.7);
}

/* =======================================================
   AJUSTE FOOTER RESPONSIVE (MÓVIL)
   ======================================================= */
@media (max-width: 768px) {
    footer {
        padding: 30px 0;
    }

    footer .contenedor {
        flex-direction: column !important;
        gap: 25px !important;
        text-align: center;
    }

    footer .col-izquierda {
        flex-direction: column !important; /* En móvil, el logo vuelve a estar ARRIBA */
        align-items: center !important;
        width: 100% !important;
    }

    .info-contacto {
        align-items: center !important; /* Centra el texto y teléfono */
    }

    .redes-sociales-footer {
        justify-content: center !important;
    }
}