    :root {
            --verde-oscuro: #1a4d32;
            --verde-claro: #1e7e4c;
            --naranja-accent: #f39c12;
            --blanco: #ffffff;
            --gris-fondo: #f8f9fa;
            --texto-oscuro: #333333;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--texto-oscuro);
            line-height: 1.6;
            scroll-behavior: smooth;
        }

        /* --- NAVEGACIÓN --- */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 8%;
            background: var(--verde-oscuro);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        .logo {
            color: var(--blanco);
            font-weight: 700;
            font-size: 1.4rem;
            letter-spacing: 1px;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            align-items: center;
        }

        .nav-links li {
            margin-left: 2rem;
        }

        .nav-links a {
            color: var(--blanco);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: 0.3s;
        }

        .nav-links a:hover {
            color: var(--naranja-accent);
        }

        .btn-nav-ws {
            background: #25d366; /* Color oficial WhatsApp */
            padding: 0.6rem 1.2rem;
            border-radius: 5px;
            color: white !important;
            font-weight: 700 !important;
        }

        /* --- HERO SECTION --- */
        .hero {
		/* 1. Definimos la imagen y el degradado (Overlay) */
		/* El degrade va de verde oscuro a verde más claro, ambos con 0.8 de opacidad */
		background: linear-gradient(
			rgba(26, 77, 50, 0.85), 
			rgba(26, 77, 50, 0.7)
		), 
		url('andamio01.png'); /* <--- AQUÍ pones el nombre de tu foto */

		/* 2. Ajustes para que la imagen se vea perfecta */
		background-size: cover;       /* Cubre todo el espacio sin deformarse */
		background-position: center;  /* Centra la foto */
		background-attachment: fixed; /* Crea un efecto 'Parallax' elegante al bajar */
		
		height: 100vh;
		display: flex;
		align-items: center;
		padding: 0 8%;
		color: var(--blanco);
		padding-top: 80px;
	}

        .hero-content {
            max-width: 650px;
        }

        .hero h1 {
            font-size: 3.5rem;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero h1 span {
            color: var(--naranja-accent);
        }

        .hero p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .hero-btns {
            display: flex;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .btn-main {
            padding: 1rem 2.5rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 700;
            transition: 0.3s;
            text-align: center;
        }

        .btn-ws-hero {
            background: var(--naranja-accent);
            color: var(--blanco);
        }

        .btn-ws-hero:hover {
            background: #e67e22;
            transform: translateY(-2px);
        }

        .btn-outline {
            border: 2px solid var(--blanco);
            color: var(--blanco);
        }

        /* Stats cards */
        .stats-container {
            display: flex;
            gap: 1.5rem;
        }

        .stat-box {
            background: rgba(255,255,255,0.1);
            padding: 1rem;
            border-radius: 8px;
            border-left: 4px solid var(--naranja-accent);
            min-width: 160px;
        }

        .stat-box strong {
            display: block;
            font-size: 1.2rem;
        }

        /* --- SECCIÓN SERVICIOS --- */
        .services {
            padding: 5rem 8%;
            text-align: center;
            background: var(--blanco);
        }

        .services h2 {
            font-size: 2.2rem;
            margin-bottom: 3rem;
            color: var(--verde-oscuro);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .service-card {
            padding: 3rem 2rem;
            background: var(--gris-fondo);
            border-radius: 15px;
            transition: 0.3s;
        }

        /* --- SECCIÓN PROYECTOS (RECUPERADA) --- */
        .projects {
            padding: 5rem 8%;
            background: var(--blanco);
            text-align: center;
        }

        .projects h2 {
            font-size: 2.2rem;
            margin-bottom: 3rem;
            color: var(--verde-oscuro);
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .project-card {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            height: 300px;
        }

        .project-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.5s;
        }

        .project-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            text-align: left;
        }

        .project-card:hover img {
            transform: scale(1.1);
        }

        /* --- SECCIÓN CLIENTES --- */
        .clients {
            padding: 4rem 8%;
            background: var(--gris-fondo);
            text-align: center;
        }

        .clients-grid {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 3rem;
            opacity: 0.6;
        }

        .clients-grid img { max-width: 140px; filter: grayscale(100%); transition: 0.3s; }
        .clients-grid img:hover { filter: grayscale(0%); opacity: 1; }

        /* --- SECCIÓN CONTACTO --- */
        /* --- SECCIÓN CONTACTO (ACTUALIZADA) --- */
        .contact {
            padding: 5rem 8%;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            background: var(--gris-fondo); /* Un fondo ligero para que resalte el formulario blanco */
        }

        .contact-info h2 {
            font-size: 2.5rem;
            color: var(--verde-oscuro);
            margin-bottom: 1.5rem;
        }

        .contact-info p { margin-bottom: 2rem; }

        .contact-form {
            background: var(--blanco);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            display: grid;
            grid-template-columns: 1fr 1fr; /* Formato de dos columnas */
            gap: 1.2rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        /* Campos que ocupan todo el ancho (Correo y Detalle) */
        .full-width { grid-column: span 2; }

        .form-group label {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--verde-oscuro);
        }

        .form-group input, 
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-family: inherit;
            font-size: 0.95rem;
            transition: 0.3s;
        }

        /* Validación visual al hacer clic */
        .form-group input:focus, 
        .form-group textarea:focus {
            outline: none;
            border-color: var(--verde-claro);
            box-shadow: 0 0 0 3px rgba(30, 126, 76, 0.1);
        }

        .btn-submit {
            grid-column: span 2;
            background: var(--verde-claro);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 6px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.3s;
            margin-top: 0.5rem;
        }

        .btn-submit:hover {
            background: var(--verde-oscuro);
            transform: translateY(-2px);
        }
  /* --- OTROS --- */
        .whatsapp-float { position: fixed; bottom: 20px; right: 20px; background: #25d366; color: white; border-radius: 50%; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; z-index: 1000; box-shadow: 0 4px 10px rgba(0,0,0,0.3); text-decoration: none; }

        /* Ajuste para celulares */
        @media (max-width: 768px) {
            .contact { grid-template-columns: 1fr; }
            .contact-form { grid-template-columns: 1fr; }
            .form-group { grid-column: span 1; }
            .btn-submit { grid-column: span 1; }
        }
		/* --- ESTILOS DE REDES SOCIALES --- */
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 2rem;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background: var(--verde-oscuro);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            text-decoration: none;
            transition: 0.3s;
            font-size: 1.2rem;
        }

        /* Colores de marca al pasar el mouse */
        .social-icon.fb:hover { background: #1877F2; transform: translateY(-3px); }
        .social-icon.ig:hover { background: #E1306C; transform: translateY(-3px); }
        .social-icon.ws:hover { background: #25D366; transform: translateY(-3px); }

        .social-icon svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }
		
		/* --- SECCIÓN VIDEO REEL --- */       

        .video-reel-section h2 {
            font-size: 2.2rem;
            color: var(--verde-oscuro);
            margin-bottom: 1rem;
        }

        .video-reel-section p {
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

       .video-reel-section {
            padding: 5rem 8%;
            background: var(--gris-fondo);
            text-align: center;
        }

        .video-container {
            max-width: 320px; /* Ancho optimizado para Reels verticales */
            margin: 0 auto;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            background: #000;
            aspect-ratio: 9 / 16;
            border: 4px solid var(--verde-oscuro); /* Marco elegante */
        }

        .video-container iframe {
            width: 100%;
            height: 100%;
        }
		
		/* --- ESTILOS DEL MODAL --- */
        .modal {
            display: none; 
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal-content {
            background-color: var(--blanco);
            width: 100%;
            max-width: 800px;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            animation: modalFadeIn 0.4s ease;
            display: grid;
            grid-template-columns: 1fr 1fr;
        }

        @keyframes modalFadeIn {
            from { opacity: 0; transform: translateY(-50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .modal-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .modal-body {
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .modal-body h2 {
            color: var(--verde-oscuro);
            margin-bottom: 15px;
            font-size: 2rem;
        }

        .modal-body p {
            color: #555;
            margin-bottom: 20px;
        }

        .modal-body ul {
            list-style: none;
            margin-bottom: 25px;
        }

        .modal-body ul li {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 30px;
            cursor: pointer;
            color: #999;
            z-index: 10;
        }

        /* Responsive Modal */
        @media (max-width: 768px) {
            .modal-content { grid-template-columns: 1fr; }
            .modal-image { height: 200px; }
            .modal-body { padding: 25px; }
        }
		
/* --- SUPER FIX PARA MÓVILES (320px a 768px) --- */
@media (max-width: 768px) {
    /* 1. Arreglamos la Barra de Navegación */
    .navbar {
        padding: 0.8rem 3%;
        flex-direction: column; /* Ponemos el logo arriba y links abajo */
        height: auto;
        position: relative; /* Evita que flote sobre el texto en pantallas mini */
    }

    .logo {
        font-size: 1.1rem !important;
        margin-bottom: 10px;
    }

    .nav-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap; /* Si no caben, saltan de línea */
        gap: 20px;
    }

    .nav-links li {
        margin-left: 0;
    }

    .nav-links a {
        font-size: 1.44rem; /* Letra más pequeña para el menú */
        padding: 4px 8px;
    }

    .btn-nav-ws {
        padding: 5px 10px !important;
    }

    /* 2. Arreglamos el Hero (El texto gigante de la foto) */
    .hero {
        padding: 100px 5% 40px 5%; /* Más espacio arriba para el logo */
        height: auto;
        min-height: 100vh;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 1.8rem !important; /* Bajamos de 3.5rem a 1.8rem */
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    /* 3. Botones y Estadísticas en columna */
    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }

    .btn-main {
        width: 100%; /* Botones a lo ancho del cel */
        padding: 0.9rem;
        font-size: 0.9rem;
    }

    .stats-container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .stat-box {
        width: 100%;
        max-width: 280px;
        min-width: auto;
    }
}

/* Fix extra para celulares muy delgados */
@media (max-width: 350px) {
    .hero h1 {
        font-size: 1.5rem !important;
    }
}

/* --- ESTILOS DEL MENÚ HAMBURGUESA --- */
/* --- HEADER Y NAVBAR --- */
.main-header {
    background-color: #1a3d2f;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 10px 0;
}

.navbar {
    display: flex;
    flex-direction: row; /* Asegura que logo e icono estén en la misma línea */
    justify-content: space-between; /* Empuja el logo a la izq y el icono a la der */
    align-items: center;
    padding: 0 20px;
    max-width: 100%;
    height: 60px; /* Altura fija para la barra */
}

.logo {
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    z-index: 1001; /* Siempre visible */
}

/* --- BOTÓN HAMBURGUESA (A la derecha) --- */
.menu-toggle {
    display: none; /* <--- Esto evita que salga en la pantalla grande */
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: white;
    transition: all 0.3s ease-in-out;
}

/* --- MENÚ DESPLEGABLE --- */
@media (max-width: 768px) {
	.menu-toggle {
        display: block; /* <--- Solo aparece aquí */
    }
    .nav-links {
        position: fixed;
        right: -100%; /* Escondido a la derecha */
        top: 0;
        width: 100%;
        height: 100vh;
        background-color: #1a3d2f;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
    }

    .nav-links.active {
        right: 0; /* Aparece al hacer clic */
    }

    /* --- LA "X" EN EL MISMO LUGAR (Derecha superior) --- */
    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }
    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Grilla de videos */
.video-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    padding: 40px 10px;
}

/* Tarjeta de video */
.video-card {
    width: 320px; /* Más grande como pediste */
    height: 180px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.video-card:hover { transform: scale(1.05); }

/* Capa de opacidad verde oscura */
.video-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(26, 61, 47, 0.7); /* Tu verde oscuro con 70% de opacidad */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    transition: background 0.3s;
}

.video-card:hover .video-overlay {
    background: rgba(26, 61, 47, 0.5); /* Se aclara un poco al pasar el mouse */
}

/* Botón de Play Circular */
.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-bottom: 10px;
    transition: 0.3s;
}

.video-card:hover .play-button {
    background: #f39c12; /* Naranja de tu marca al hacer hover */
    border-color: #f39c12;
}



/* Contenedor oscuro de fondo */
.v-video-modal-overlay {
    display: none; 
    position: fixed;
    z-index: 9999; /* Un número alto para que nada lo tape */
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

/* Caja que contiene el video */
.v-video-modal-container {
    position: relative;
    width: 90%;
    max-width: 400px; /* Ancho ideal para videos verticales (Reels) */
    z-index: 10000; /* Más alto que el overlay */
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* El video o iframe propiamente dicho */
.v-video-player-frame {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background-color: #000;
    /* Esto evita que el video vertical se vea cortado o con zoom */
    object-fit: contain; 
}

/* Botón cerrar exclusivo */
.v-video-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #ffffff;
    font-size: 45px;
    font-weight: bold;
    cursor: pointer;
    z-index: 5001;
}

.v-video-modal-close:hover {
    color: #f39c12; /* Naranja de tu marca */
}


/* Contenedor especial para que el iframe de Facebook sea vertical */
.v-video-fb-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    padding-top: 177.77%; /* Proporción 9:16 (vertical) */
    background: #000;
    border-radius: 15px;
    overflow: hidden;
}

.v-video-fb-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Ajuste al contenedor del modal para que no sea tan gigante en PC */
.v-video-modal-container {
    max-width: 380px; /* Ancho típico de un celular */
    width: 90%;
    margin: auto;
}

#vVideoModalBody {
    width: 100%;
    height: auto;
    background: #000; /* Fondo negro por si el video tarda en cargar */
    border-radius: 15px;
    overflow: hidden;
}