        /* --- CONFIGURACIÓN GLOBAL --- */
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Montserrat', sans-serif;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }

        /* --- NAVEGACIÓN FIJA RESPONSIVA --- */
        nav.fixed-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
        }

        .search-pill {
            background-color: #0c0c0c;
            border-radius: 50px;
            padding: 4px 15px;
            display: flex;
            align-items: center;
            width: 110px;
        }

        .nav-underline {
            border-bottom: 1px solid rgba(70, 69, 69, 0.3) !important;
            width: 100%;
            margin-top: 5px;
        }

        .logo-container {
            z-index: 100;
            flex-shrink: 0;
        }

        /* --- ESTILOS DEL MENÚ --- */
        .menu-item {
            font-size: 0.60rem; 
            letter-spacing: 0.5px;
            color: #ffffff !important; 
            font-weight: 700;
            text-transform: uppercase;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); 
            display: inline-block; 
            transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
            will-change: transform, color;
        }

        .menu-item:hover {
            transform: scale(1.1);
            color: #4ade80 !important; 
        }

        .menu-item.scrolled-text {
            color: #000000 !important;
            text-shadow: none;
        }

        .menu-item.scrolled-text:hover {
            color: #4ade80 !important;
        }

        @media (min-width: 768px) {
            .menu-item { font-size: 0.75rem; }
        }
        @media (min-width: 1024px) {
            .menu-item { font-size: 0.85rem; }
        }

        /* --- HERO CON VIDEO --- */
        .hero-video-container {
            position: relative;
            height: 75vh; 
            min-height: 450px; 
            background-color: #111;
            overflow: hidden; 
        }

        @media (min-width: 1024px) {
            .hero-video-container { 
                height: 110vh; 
                min-height: 600px; 
            }
        }

        .video-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%); 
            width: 100%;
            height: 100%;
            z-index: 0;
            object-fit: cover; 
            pointer-events: none;
        }

        @media (max-width: 767px) {
            .video-bg {
                width: auto;
                height: 100%;
            }
        }

        /* --- BOTONES --- */
        .btn-green-cotiza {
            background-color: #00c800;
            color: white;
            padding: 12px 30px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1rem;
            box-shadow: 0 4px 15px rgba(0, 200, 0, 0.4);
            text-transform: uppercase;
            transition: transform 0.2s ease;
            will-change: transform;
        }
        .btn-green-cotiza:hover { transform: scale(1.05); }

        /* --- FORMULARIO Y CONTACTO --- */
        .contact-card-dark {
            background-color: #111111;
            border-radius: 30px;
            padding: 25px;
        }
        @media (min-width: 1024px) {
            .contact-card-dark { border-radius: 45px; padding: 55px; }
        }

        .form-field-white {
            width: 100%;
            background-color: white;
            border-radius: 15px;
            padding: 14px 20px;
            margin-bottom: 20px;
            font-size: 0.95rem;
            color: #333;
            outline: none;
        }

        .btn-send-border {
            border: 2px solid white;
            color: white;
            background-color: transparent;
            border-radius: 25px;
            padding: 10px 55px;
            font-weight: 700;
            text-transform: uppercase;
            transition: background-color 0.3s ease, color 0.3s ease;
            cursor: pointer;
        }
        .btn-send-border:hover { background-color: white; color: black; }

        /* --- ESTILOS DEL MAPA --- */
        .map-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 30px;
            height: 350px;
            width: 100%;
        }
        @media (min-width: 768px) {
            .map-wrapper { height: 450px; }
        }
        @media (min-width: 1024px) {
            .map-wrapper { border-radius: 40px; height: 550px; }
        }
        .map-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        .map-container iframe {
            width: 100%; 
            height: 100%;
            border: none;
        }

        /* --- SECCIÓN INSTALACIONES --- */
        .hero-instalaciones {
            display: flex;
            flex-direction: column;
            background-color: white;
        }
        @media (min-width: 768px) {
            .hero-instalaciones { flex-direction: row; height: 500px; }
        }
        @media (min-width: 1024px) {
            .hero-instalaciones { height: 600px; }
        }

        .hero-inst-left {
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 40px 20px;
            text-align: center;
        }
        @media (min-width: 768px) {
            .hero-inst-left { width: 45%; padding-left: 8%; text-align: left; }
        }

        .hero-inst-right {
            width: 100%;
            min-height: 350px;
            background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                              url('../src/img/webp/DSC_0424.webp'); 
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: center;
            padding: 40px 20px;
        }
        @media (min-width: 768px) {
            .hero-inst-right { width: 55%; align-items: flex-end; padding: 40px; }
        }
        @media (min-width: 1024px) {
            .hero-inst-right { padding: 60px; }
        }

        .inst-title-box {
            background-color: #111;
            color: white;
            padding: 10px 20px;
            border-radius: 15px;
            display: inline-block;
        }

        .inst-desc {
            max-width: 480px;
            color: white;
            font-style: italic;
            line-height: 1.6;
            margin-bottom: 30px;
            text-align: center;
        }
        @media (min-width: 768px) {
            .inst-desc { text-align: right; }
        }

        /* --- GRID SERVICIOS --- */
        .service-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 25px;
            background-color: #f3f4f6; 
        }
        @media (min-width: 768px) {
            .service-image { height: 350px; border-radius: 35px; }
        }
        @media (min-width: 1024px) {
            .service-image { height: 450px; border-radius: 40px; }
        }

        /* Animación sutil cuando carga la imagen */
        .img-fade-in {
            animation: fadeIn 0.8s ease-in-out;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .service-title {
            font-size: 2.2rem;
            font-weight: 900;
            color: #111;
            text-transform: uppercase;
            line-height: 0.9;
        }
        @media (min-width: 768px) {
            .service-title { font-size: 2.8rem; }
        }
        @media (min-width: 1024px) {
            .service-title { font-size: 4.5rem; }
        }

        /* --- FOOTER --- */
        .footer-main-dark {
            background-color: #111111;
            color: white;
            padding: 40px 20px;
        }

        .footer-v-divider {
            display: none;
            border-left: 1px solid #555;
            height: 60px;
            margin: 0 40px;
        }
        @media (min-width: 1024px) {
            .footer-v-divider { display: block; }
        }

        .info-icon-circle {
            width: 40px;
            height: 40px;
            border: 2px solid black;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        @media (max-width: 480px) {
            h1{
                font-size: 45px!important;
                line-height: 1.0!important;
            }
        }