        /* --- VARIABLES Y RESET --- */
        :root {
            --verde-bosque: #2d5a27;
            --cafe-madera: #8b5a2b;
            --gris-piedra: #4a4a4a;
            --blanco-hueso: #f8f9fa;
            --negro-suave: #222;
            --transicion: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: var(--negro-suave);
            background-color: var(--blanco-hueso);
            scroll-behavior: smooth;
        }

        h1, h2, h3 {
            font-family: 'Montserrat', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        img {
            max-width: 100%;
            display: block;
        }
        
        /* Limita el tamaño del logo */
        .nav-logo {
            height: 60px; /* Prueba con 60px; si sigue grande, bájalo a 50px */
            width: auto;  /* Esto evita que la imagen se estire feo */
            display: block;
            transition: var(--transicion); /* Para que cambie suavemente */
        }

        /* Ajuste para que el menú no se vea apretado */
        nav {
            padding: 0.5rem 5%; /* Reducimos el padding vertical */
            min-height: 80px;   /* Altura mínima de la barra */
            display: flex;
            align-items: center;
        }

        /* --- NAVEGACIÓN --- */
        nav {
            background: rgba(255, 255, 255, 0.95);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .logo {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--verde-bosque);
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li a {
            text-decoration: none;
            color: var(--negro-suave);
            margin-left: 2rem;
            font-weight: 400;
            transition: var(--transicion);
        }

        .nav-links li a:hover {
            color: var(--verde-bosque);
        }
        
        /* --- HERO SECTION --- */
        .hero {
            height: 100vh;
            position: relative;
            z-index: 0; /* ensures negative z-index children don't fall behind the page */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 0 20px;
            overflow: hidden;
            /* Fallback background if video doesn't load */
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                        url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
        }

        .hero-video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            object-fit: cover;
            background: #2d5a27;
            pointer-events: none;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.4);
            z-index: 1;
        }
        
        /* --- FOOTER Y REDES SOCIALES --- */
.main-footer {
    background-color: var(--verde-bosque);
    color: var(--blanco-hueso);
    padding: 60px 20px 20px;
    text-align: center;
}

.footer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.footer-content p {
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.9;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1); /* Fondo sutil */
    color: var(--blanco-hueso);
    text-decoration: none;
    font-size: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Efectos Hover */
.social-icon:hover {
    transform: translateY(-5px);
    background: var(--blanco-hueso);
}

.social-icon.fb:hover { color: #1877f2; } /* Azul Facebook */
.social-icon.ig:hover { color: #e4405f; } /* Rosa Instagram */

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    opacity: 0.7;
}
        
        