:root {
    --color-logo: #36573B;
    --brand-brown: #7A6855;
    --brand-beige: #D6D2C4;
    --brand-cyan: #2DCCD3;
    --brand-green-light: #67823A;
    --brand-dark: #002D0E;
    --brand-gold: #D69A2D;
    --font-titles: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
}

html, body {
    font-family: var(--font-body);
}

nav {
    position: fixed;
    top: 0;
    left: 0; /* Asegura que inicie en el borde izquierdo */
    width: 100%;
    padding: 20px 5%;
    height: 70px; /* Ajusté un poco el alto para dar aire al logo de 50px */
    display: flex;
    align-items: center;
    z-index: 10000;
    background: var(--brand-dark);
    box-sizing: border-box;
}

        .logo {
            /* Eliminadas propiedades de texto innecesarias para una imagen */
            text-decoration: none;
            display: flex; /* Ayuda a alinear la imagen internamente */
            align-items: center;
        }

        .logo img {
            height: 40px;
            width: auto;  /* Mantiene la proporción de aspecto original */
            display: block;
        }

        .nav-links {
            display: none;
            list-style: none;
            gap: 40px;
            margin-left: auto;
        }

        .a-active {
            color: var(--brand-gold);
        }

        .nav-links a {
            color: var(--brand-beige);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 400;
            text-transform: uppercase;
            transition: color 0.3s;
        }

        .nav-links li {
            color: var(--brand-beige);
        }

        .nav-links a:hover { color: var(--brand-gold); }

        /* --- HAMBURGUESA --- */
        .hamburger {
            cursor: pointer;
            z-index: 20001;
            display: flex;
            flex-direction: column;
            gap: 7px;
            margin-left: auto;
        }

        .hamburger span {
            width: 30px;
            height: 2px;
            background-color: var(--brand-beige);
            transition: 0.3s;
        }

        /* --- SLIDER --- */
        .slider-container {
            position: relative;
            width: 100%;
            height: 100vh;
            background: #000;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
        }

        .slide.active { opacity: 1; }


.mobile-menu {
            position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
            background: var(--brand-dark); display: flex; flex-direction: column;
            justify-content: center; align-items: center; z-index: 9999; opacity: 0; visibility: hidden;
            list-style: none;
        }

        .mobile-menu a {
            color: var(--brand-beige);
            font-family: var(--font-titles);
            font-size: 2.5rem;
            text-decoration: none;
            margin: 10px 0;
            transform: translateY(30px);
            opacity: 0;
        }

        /* --- RESPONSIVE LOGIC --- */
        @media (max-width: 768px) {
            nav {
                padding: 15px 5%; /* Padding más pequeño en móvil */
            }
            
            .logo {
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
            }
            
            .logo img {
                height: 40px; /* Logo ligeramente más pequeño en móvil */
            }

            .footer-section { text-align: center; }
            .footer-container { gap: 40px; }
        }

        @media (min-width: 769px) {
            .nav-links { display: flex; }
            .hamburger { display: none; }
            .logo { text-align: left; }
        }
        .info-divisa {
            font-size: 0.8rem;
            color: #002d0eb6;
            margin-top: 10px;
        }

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.lang-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.flag-icon {
    width: 20px; 
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
 /* --- FOOTER --- */
        .site-footer {
            background-color: var(--brand-dark); 
            padding: 80px 5% 40px;
            border-top: 1px solid rgba(214, 210, 196, 0.1);
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-brand { color: var(--brand-gold); font-size: 2.2rem; margin-bottom: 5px; }
        .footer-subtitle { color: var(--brand-green-light); font-weight: 600; margin-bottom: 20px; }
        .footer-address { font-size: 0.95rem; line-height: 1.8; color: var(--brand-beige); opacity: 0.8; }
        
        .footer-section h4 { color: var(--brand-brown); margin-bottom: 20px; font-size: 1.1rem; }
        .footer-section a { color: var(--brand-beige); text-decoration: none; display: block; margin-bottom: 10px; font-size: 1rem; }
        
        .whatsapp-link { color: var(--brand-cyan) !important; font-weight: 600; }
        .mt-footer { margin-top: 30px; }

        .brochure-btn {
            display: inline-block;
            padding: 15px 30px;
            background-color: transparent;
            border: 1px solid var(--brand-gold);
            color: var(--brand-gold) !important;
            text-transform: uppercase;
            font-family: var(--font-titles);
            font-weight: 700;
            letter-spacing: 2px;
            margin-bottom: 40px;
            transition: 0.3s;
        }

        .brochure-btn:hover { background: var(--brand-gold); color: var(--brand-dark) !important; }

        .footer-legal { border-top: 1px solid rgba(214, 210, 196, 0.1); padding-top: 25px; }
        .footer-legal p { font-size: 0.8rem; margin-top: 10px; opacity: 0.5; }

        .footer-credits {
            margin-top: 80px;
            text-align: center;
            font-size: 0.75rem;
            color: var(--brand-brown);
            text-transform: uppercase;
        }

        .impetu-logo { width: 70px; margin-left: 10px; vertical-align: middle; }

        /* --- RESPONSIVE LOGIC --- */
        @media (max-width: 768px) {
            .footer-section { text-align: center; }
            .footer-container { gap: 40px; }
        }