        /* Variables CSS para tipografías y colores */
        :root {
            --font-text: 'Open Sauce One', 'Open Sans', sans-serif;
            --font-title: 'TT Tricks', 'Montserrat', sans-serif;
            --color-gray-light: #d2d2d2;
            --color-blue: #003399;
            --color-black: #000000;
            --color-white-transparent: rgba(255, 255, 255, 0.72);
        }

        /* FONDO AZUL TENUE PARA TODA LA PÁGINA */
        html,
        body {
            background-color: #f2f6f8 !important;
            min-height: 100vh;
        }

        /* Aplicar tipografías globales */
        body {
            font-family: var(--font-text);
            color: var(--color-black);
            background-color: #f2f6f8 !important;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-title);
            font-weight: 600;
        }

        /* NAVBAR TRANSPARENTE MODIFICADO - SIN DISTORSIÓN */
        .navbar-custom {
            background: rgba(255, 255, 255, 0.65) !important;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Navbar cuando se hace scroll - más visible pero sin blur */
        .navbar-custom.scrolled {
            background: rgba(255, 255, 255, 0.95) !important;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand img {
            height: 50px;
            width: auto;
        }

        .navbar-nav .nav-link {
            color: black !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }

        /* Navbar toggler para móvil */
        .navbar-toggler {
            border-color: rgba(255, 255, 255, 0.5);
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .footer-bottom a {
            color: #343a40;
        }

        .dropdown-menu {
            background: rgba(255, 255, 255, 0.95);
            border: none;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .dropdown-menu li a {
            color: var(--color-black);
            padding: 8px 16px;
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }

        .dropdown-menu li a:hover {
            background-color: rgba(0, 51, 153, 0.2);
        }

        .dropdown-menu li a img {
            width: 20px;
            height: 15px;
            margin-right: 8px;
            border-radius: 2px;
        }

        /* Sección principal con imagen - ALTURA COMPLETA */
        .hero-section {
            height: 55vh;
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('/paginaprincipal/portada.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .hero-content {
            text-align: center;
            color: white;
            z-index: 2;
        }

        .hero-buttons {
            margin-top: 30px;
        }

        .btn-destino {
            background-color: #0b2b6d;
            border: none;
            color: white;
            padding: 15px 40px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 50px;
            margin: 0 15px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: var(--font-text);
        }

        .btn-destino:hover {
            background-color: #002266;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 51, 153, 0.4);
        }

        /* Sección Nosotros - FONDO AZUL TENUE */
        .nosotros-section {
            padding: 10px 0 10px 0;
            background-color: #f2f6f8 !important;
        }

        .nosotros-image {
            height: 350px;
            background: url('/paginaprincipal/nosotros.jpg');
            background-size: cover;
            background-position: center top;
            border-radius: 10px;
            margin-top: -60px;

        }


        @media (max-width: 768px) {

            /* Resetear el margen negativo en móvil */
            .nosotros-image {
                margin-top: 0;
                height: 300px;
                /* Altura más pequeña para móvil */
                background-position: center center;
                /* Centrar mejor en móvil */
            }

            /* Ajustar padding de la sección en móvil */
            .nosotros-section {
                padding: 20px 0 20px 0;
            }
        }

        @media (max-width: 576px) {

            /* Para pantallas muy pequeñas */
            .nosotros-image {
                height: 250px;
                background-position: center center;
                margin-top: 0;
            }
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--color-black);
            margin-bottom: 30px;
            font-family: var(--font-title);
        }

        .subsection-title {
            font-size: 1.7rem;
            font-weight: 600;
            margin: 40px 0 30px 0;
            font-family: var(--font-title);
        }

        /* Contenedor del equipo en una sola línea - MODIFICADO PARA 6 TARJETAS */
        .team-container {
            display: flex;
            gap: 15px;
            flex-wrap: nowrap;
            overflow-x: auto;
            justify-content: space-between;
        }

        .team-container .col-team {
            flex: 0 0 calc(16.666% - 12.5px);
            min-width: 180px;
        }

        /* Cuadros del equipo - AJUSTADO PARA MEJOR FIT */
        .team-card {
            background-color: #0b2b6d;
            color: white;
            padding: 25px 15px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 20px;
            transition: transform 0.3s ease;
            height: 140px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .team-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 51, 153, 0.3);
        }

        .team-card h5 {
            font-family: var(--font-title);
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 1rem;
        }

        .team-card p {
            font-size: 0.9rem;
            margin-bottom: 0;
        }

        .destinos-section {
            background-color: #f2f6f8 !important;
            padding: 0 0 40px 0;
        }

        .destino-image {
            background-size: cover;
            background-position: center;
            border-radius: 10px;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
        }



        .destino-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            color: white;
            padding: 20px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Sección Servicios - MODIFICADA CON BOTONES */
        .servicios-section {
            padding: 80px 0;
            background-color: #f2f6f8 !important;
        }

        .servicio-card {
            background: white;
            border-radius: 15px;
            padding: 30px 20px;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .servicio-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .servicio-boton {
            background: linear-gradient(135deg, var(--color-blue) 0%, #002266 100%);
            color: white;
            border: none;
            border-radius: 25px;
            padding: 8px 20px;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
            align-self: center;
            transition: all 0.3s ease;
            font-family: var(--font-text);
        }

        .servicio-boton:hover {
            background: linear-gradient(135deg, #002266 0%, #001144 100%);
            transform: scale(1.05);
        }

        .servicio-card h5 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--color-black);
            margin-bottom: 15px;
            flex-grow: 1;
            font-family: var(--font-title);
        }

        .servicio-card p {
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 2;
            font-family: var(--font-text);
            text-align: justify;
            text-justify: inter-word;
            text-align-last: left;
            hyphens: auto;
            -webkit-hyphens: auto;
            -ms-hyphens: auto;
        }

        .servicio-icon {
            font-size: 2.5rem;
            text-align: center;
            margin-top: auto;
        }

        /* Sección Contacto - FONDO AZUL TENUE */
        .contacto-section {
            padding: 80px 0;
            background-color: #f2f6f8 !important;
        }

        .contact-info {
            background-color: #0b2b6d;
            color: white;
            padding: 40px;
            border-radius: 15px;
            height: 100%;
        }

        .contact-form {
            background-color: white;
            padding: 40px;
            border-radius: 15px;
        }

        .contact-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            height: 100%;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .contact-card h5 {
            color: var(--color-blue);
            font-weight: 600;
            margin-bottom: 20px;
            font-family: var(--font-title);
        }

        /* Footer - SOLO FOOTER SUPERIOR GRIS CLARO */
        .footer-top {
            background-color: #dee2e6 !important;
            padding: 40px 0;
            color: #343a40;
        }

        .footer-top p {
            color: #343a40;
        }

        .footer-top a {
            color: #343a40;
        }

        .footer-logo {
            height: 60px;
            width: auto;
        }

        .footer-bottom {
            background-color: #f2f6f8 !important;
            color: #343a40;
            padding: 20px 0;
        }

        .footer-bottom a {
            color: #343a40;
        }

        /* ESTILOS NUEVOS PARA REDES SOCIALES Y CORREOS */
        .social-and-email-container {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 30px;
        }

        .social-icons {
            display: flex;
            gap: 5px;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: transparent;
            color: rgb(15, 15, 15) !important;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 24px;
        }

        .social-link:hover {
            color: rgb(105, 106, 107) !important;
            transform: translateY(-2px);
        }

        .email-links {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .email-link {
            color: #343a40 !important;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            font-family: var(--font-text);
        }

        .email-link:hover {
            color: var(--color-blue) !important;
            text-decoration: underline;
        }

        /* Responsive - ACTUALIZADO PARA 6 TARJETAS */
        @media (max-width: 1200px) {
            .team-container .col-team {
                flex: 0 0 calc(33.333% - 10px);
            }
        }

        @media (max-width: 768px) {

            /* HERO SECTION - AJUSTE PARA MÓVIL */
            .hero-section {
                height: 60vh;
                /* Mantener altura completa en móvil */
                padding-top: 80px;
                /* Agregar padding superior para compensar navbar */
            }

            .hero-content {
                margin-top: 60px;
                /* Empujar el contenido más abajo */
            }

            .hero-content h1 {
                font-size: 2.5rem;
                /* Reducir tamaño del título en móvil */
                margin-bottom: 20px;
            }


            .nosotros-section .lead {
                line-height: 1.6;
            }

            .hero-content .lead {
                font-size: 1.1rem;
                margin-bottom: 30px;
            }

            .btn-destino {
                display: block;
                margin: 15px auto;
                width: 250px;
                padding: 12px 30px;
                font-size: 16px;
            }

            .section-title {
                font-size: 2rem;
            }

            .subsection-title {
                font-size: 1.3rem;
            }

            .team-container {
                flex-wrap: wrap;
                justify-content: center;
            }

            .team-container .col-team {
                flex: 0 0 calc(50% - 7.5px);
                min-width: auto;
            }

            .servicio-card {
                margin-bottom: 30px;
            }

            /* Navbar en móvil con mejor contraste */
            .navbar-custom .navbar-nav .nav-link {
                color: var(--color-black) !important;
                text-shadow: none;
            }

            /* FOOTER RESPONSIVE - MEJORADO */
            .footer-bottom .row {
                flex-direction: column;
                text-align: center !important;
                gap: 15px;
            }

            .footer-bottom .col-md-6 {
                max-width: 100%;
                flex: none;
            }

            .footer-bottom .col-md-6:first-child {
                order: 2;
                /* Mover copyright abajo */
            }

            .footer-bottom .col-md-6:last-child {
                order: 1;
                /* Mover enlaces arriba */
            }

            .footer-bottom .col-md-6.text-md-end {
                text-align: center !important;
                display: flex;
                flex-direction: column;
                gap: 10px;
            }

            .footer-bottom .col-md-6.text-md-end a {
                display: block;
                margin: 0 !important;
                padding: 5px 0;
                font-size: 0.9rem;
            }

            .footer-bottom .col-md-6.text-md-end span {
                margin-top: 10px;
                font-size: 0.8rem;
                opacity: 0.8;
            }

            .social-and-email-container {
                flex-direction: column;
                align-items: center;
                gap: 20px;
                margin-top: 20px;
            }

            .col-md-6.text-md-end {
                text-align: center !important;
            }
        }

        @media (max-width: 576px) {

            /* HERO ADJUSTMENTS PARA PANTALLAS MUY PEQUEÑAS */
            .hero-content {
                margin-top: 80px;
                /* Más espacio en pantallas muy pequeñas */
                padding: 0 20px;
                /* Agregar padding lateral */
            }

            .hero-content h1 {
                font-size: 2rem;
                /* Título aún más pequeño */
                line-height: 1.2;
            }

            .hero-content .lead {
                font-size: 1rem;
            }

            .btn-destino {
                width: 220px;
                padding: 10px 25px;
                font-size: 14px;
                margin: 10px auto;
            }

            .team-container .col-team {
                flex: 0 0 100%;
            }

            /* FOOTER EN PANTALLAS MUY PEQUEÑAS */
            .footer-bottom {
                padding: 25px 0;
            }

            .footer-bottom .container {
                padding: 0 15px;
            }

            .footer-bottom .col-md-6.text-md-end a {
                font-size: 0.8rem;
                padding: 8px 0;
            }

            .footer-bottom .col-md-6 p {
                font-size: 0.8rem;
                margin-bottom: 0;
            }

            .social-and-email-container {
                gap: 15px;
            }

            .social-icons {
                gap: 5px;
            }

            .social-link {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }

            .email-link {
                font-size: 0.8rem;
            }
        }


        @media (max-width: 768px) {
            .footer-top {
                padding: 30px 0;
            }

            .footer-top .row {
                text-align: center;
            }

            .footer-top .col-md-6:first-child {
                margin-bottom: 30px;
            }

            .footer-top .col-md-6.text-md-end {
                text-align: center !important;
            }

            .social-and-email-container {
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 20px;
            }

            .social-icons {
                justify-content: center;
                gap: 20px;
            }

            .social-link {
                width: 50px;
                height: 50px;
            }

            .social-link svg {
                width: 26px;
                height: 26px;
            }

            .email-links {
                text-align: center;
                gap: 8px;
            }

            .email-link {
                font-size: 1rem;
                padding: 5px 0;
            }

            .social-title {
                font-size: 1.2rem;
                margin-bottom: 20px;
            }
        }

        @media (max-width: 576px) {
            .footer-top {
                padding: 25px 0;
            }

            .footer-logo {
                height: 50px;
            }

            .footer-top .col-md-6:first-child {
                margin-bottom: 25px;
            }

            .footer-top p {
                font-size: 0.9rem;
                line-height: 1.5;
            }

            .social-and-email-container {
                gap: 15px;
            }

            .social-icons {
                gap: 15px;
            }

            .social-link {
                width: 45px;
                height: 45px;
            }

            .social-link svg {
                width: 24px;
                height: 24px;
            }

            .email-link {
                font-size: 0.9rem;
            }

            .social-title {
                font-size: 1.1rem;
                margin-bottom: 15px;
            }
        }

        /* Agregar estos estilos al final de tu CSS existente - VERSIÓN ULTRA PEGADA */

        /* AJUSTES PARA TÍTULOS E IMÁGENES EN MÓVIL - ESPACIADO ULTRA MÍNIMO */
        @media (max-width: 768px) {

            /* Reducir margen inferior de los títulos H2 en móvil - ULTRA PEGADO */
            .text-center h2.mb-3 {
                margin-bottom: 0px !important;
                /* Sin margen - completamente pegado */
            }

            /* Reducir margen inferior de los contenedores de imágenes */
            .col-md-10.offset-md-1.mb-4 {
                margin-bottom: 10px !important;
                /* Reducido aún más */
            }

            /* Ajuste específico para las imágenes adicionales - ULTRA PEGADAS AL TÍTULO */
            .additional-image {
                margin-top: -10px !important;
                /* Margen negativo fuerte para solapar */
            }
        }

        @media (max-width: 576px) {

            /* Para pantallas muy pequeñas - ESPACIADO EXTREMO */
            .text-center h2.mb-3 {
                margin-bottom: 0px !important;
                /* Sin separación alguna */
            }

            .col-md-10.offset-md-1.mb-4 {
                margin-bottom: 8px !important;
                /* Mínima separación entre secciones */
            }

            /* Imagen prácticamente solapando el título */
            .additional-image {
                margin-top: -15px !important;
                /* Margen negativo extremo */
                height: 280px !important;
                /* Altura reducida para móviles pequeños */
            }
        }
        
        
        
        