<style>
        /* =========================================================
           RESET / BASE
        ========================================================= */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 90px;
        }
        body {
            font-family: 'Lato', 'Segoe UI', system-ui, sans-serif;
            color: #1a1a1a;
            background: #fff;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
        }
        img {
            max-width: 100%;
        }

        /* =========================================================
           SOLO 3 COLORES: ROJO #E70000, AMARILLO #E7E700, VERDE #009245
        ========================================================= */
        :root {
            --rojo: #E70000;
            --amarillo: #E7E700;
            --verde: #009245;
            --negro: #000000;
            --blanco: #ffffff;
            --gris-claro: #f8f9fa;
            --texto-gris: #555;
            --whatsapp: #25d366;
        }

        /* =========================================================
           ANIMACIONES DE SCROLL - MOVIMIENTO IZQUIERDA A DERECHA
        ========================================================= */
        .scroll-animate {
            opacity: 0;
            transform: translateX(-80px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .scroll-animate.visible {
            opacity: 1;
            transform: translateX(0);
        }
        .scroll-animate-delay-1 {
            transition-delay: 0.1s;
        }
        .scroll-animate-delay-2 {
            transition-delay: 0.2s;
        }
        .scroll-animate-delay-3 {
            transition-delay: 0.3s;
        }
        .scroll-animate-delay-4 {
            transition-delay: 0.4s;
        }
        .scroll-animate-delay-5 {
            transition-delay: 0.5s;
        }
        .scroll-animate-delay-6 {
            transition-delay: 0.6s;
        }

        /* Efecto alternativo para elementos pares (de derecha a izquierda) */
        .scroll-animate-right {
            opacity: 0;
            transform: translateX(80px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .scroll-animate-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* Efecto para textos (desplazamiento más suave) */
        .scroll-animate-text {
            opacity: 0;
            transform: translateX(-60px);
            transition: all 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
        }
        .scroll-animate-text.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* Efecto para tarjetas (con escala sutil) */
        .scroll-animate-card {
            opacity: 0;
            transform: translateX(-60px) scale(0.95);
            transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .scroll-animate-card.visible {
            opacity: 1;
            transform: translateX(0) scale(1);
        }

        /* =========================================================
           TOP BAR - DEGRADADO BOLIVIA (GRADIENTE SUAVE)
        ========================================================= */
        .topbar {
            width: 100%;
            min-height: 42px;
            background: linear-gradient(90deg, 
                var(--rojo) 0%, 
                var(--rojo) 15%, 
                var(--amarillo) 50%, 
                var(--verde) 85%, 
                var(--verde) 100%
            );
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
            border-bottom: 2px solid var(--negro);
            position: relative;
            z-index: 10000;
        }
        .topbar::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.1);
            pointer-events: none;
        }
        .topbar-container {
            max-width: 1400px;
            min-height: 42px;
            margin: auto;
            padding: 0 25px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
            position: relative;
            z-index: 1;
        }
        .topbar-info {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 18px;
        }
        .topbar-info span {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            white-space: nowrap;
            color: #fff;
        }
        .topbar-info a {
            color: #fff;
            transition: opacity 0.3s ease;
        }
        .topbar-info a:hover {
            opacity: 0.8;
        }
        .topbar-info i {
            color: #fff;
            filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
        }
        .top-social {
            display: flex;
            align-items: stretch;
            height: 42px;
        }
        .top-social a {
            width: 38px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            border-left: 1px solid rgba(255,255,255,0.2);
            transition: .3s ease;
            text-shadow: 0 1px 3px rgba(0,0,0,0.2);
        }
        .top-social a:last-child {
            border-right: 1px solid rgba(255,255,255,0.2);
        }
        .top-social a:hover {
            color: #fff;
            background: rgba(0,0,0,0.25);
            transform: scale(1.05);
        }

        /* =========================================================
           NAVBAR
        ========================================================= */
        .main-navbar {
            position: sticky;
            top: 0;
            z-index: 9999;
            width: 100%;
            height: 88px;
            background: rgba(255,255,255,.98);
            border-bottom: 3px solid var(--rojo);
            box-shadow: 0 2px 20px rgba(231,0,0,.08);
            transition: .3s ease;
        }
        .main-navbar.scrolled {
            height: 76px;
            box-shadow: 0 4px 30px rgba(231,0,0,.12);
        }
        .nav-container {
            max-width: 1400px;
            height: 100%;
            margin: auto;
            padding: 0 25px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 25px;
        }

        /* LOGO */
        .brand-logo {
            display: flex;
            align-items: center;
            flex-shrink: 0;
            height: 100%;
            padding: 4px 0;
        }
        .brand-logo img {
            height: 64px;
            width: auto;
            display: block;
            transition: .3s ease;
            object-fit: contain;
        }
        .main-navbar.scrolled .brand-logo img {
            height: 54px;
        }

        /* MENU */
        .main-menu {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 2px;
        }
        .nav-link-custom {
            position: relative;
            display: flex;
            align-items: center;
            gap: 7px;
            padding: 13px 14px;
            color: var(--negro);
            font-size: 13px;
            font-weight: 700;
            white-space: nowrap;
            transition: .3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .nav-link-custom::after {
            content: "";
            position: absolute;
            left: 14px;
            right: 14px;
            bottom: 4px;
            height: 3px;
            background: var(--rojo);
            transform: scaleX(0);
            transform-origin: center;
            transition: .3s ease;
            border-radius: 4px;
        }
        .nav-link-custom:hover,
        .nav-link-custom.active {
            color: var(--rojo);
        }
        .nav-link-custom:hover::after,
        .nav-link-custom.active::after {
            transform: scaleX(1);
        }

        /* MENU MOBILE */
        .menu-toggle {
            display: none;
            width: 44px;
            height: 44px;
            border: 0;
            border-radius: 8px;
            background: var(--rojo);
            color: #fff;
            font-size: 19px;
            cursor: pointer;
            transition: .3s ease;
        }
        .menu-toggle:hover {
            background: var(--rojo);
            opacity: 0.8;
        }

        /* =========================================================
           HERO / PORTADA
        ========================================================= */
        .hero {
            position: relative;
            width: 100%;
            min-height: calc(100vh - 130px);
            overflow: hidden;
            background: #111;
        }
        .hero-slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 1.2s ease;
        }
        .hero-slide.active {
            opacity: 1;
            visibility: visible;
        }
        .hero-slide::after {
            content: "";
            position: absolute;
            inset: 0;
        
        }

        .hero-slide:nth-child(1) { background-image: url("../img/hero-1.jpg"); }
        .hero-slide:nth-child(2) { background-image: url("../img/hero-2.jpg"); }
        .hero-slide:nth-child(3) { background-image: url("../img/hero-3.jpg"); }
        .hero-slide:nth-child(4) { background-image: url("../img/port4.jpeg"); }
        .hero-slide:nth-child(5) { background-image: url("../img/port5.jpeg"); }

        .hero-content {
            position: relative;
            z-index: 3;
            min-height: calc(100vh - 130px);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            padding: 90px 20px 80px;
        }
        .hero-inner {
            width: 100%;
            max-width: 1000px;
            animation: heroIn .9s ease both;
        }
        @keyframes heroIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-kicker {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 13px;
            margin-bottom: 20px;
            color: var(--amarillo);
            font-size: 18px;
            font-weight: 700;
            letter-spacing: 4px;
            text-transform: uppercase;
        }
        .hero-kicker span {
            width: 70px;
            height: 2px;
            background: var(--amarillo);
        }

        .hero-title {
            margin: 0;
            color: #fff;
            font-family: 'Playfair Display', serif;
            font-size: clamp(42px, 7vw, 82px);
            font-weight: 900;
            line-height: .95;
            letter-spacing: -1px;
            text-shadow: 0 4px 30px rgba(0,0,0,.5);
        }
        .hero-title span {
            color: var(--amarillo);
        }

        .hero-subtitle {
            margin: 20px 0 18px;
            color: #fff;
            font-size: clamp(18px, 2vw, 28px);
            font-weight: 700;
            letter-spacing: 6px;
            text-shadow: 0 2px 20px rgba(0,0,0,.5);
        }

        .hero-description {
            max-width: 750px;
            margin: 0 auto 34px;
            color: rgba(255,255,255,.92);
            font-size: 18px;
            line-height: 1.8;
            text-shadow: 0 2px 15px rgba(0,0,0,.5);
        }

        .hero-buttons {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
        }
        .hero-btn {
            min-width: 190px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 28px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            box-shadow: 0 8px 30px rgba(0,0,0,.3);
            transition: .3s ease;
            border: 2px solid transparent;
        }
        .hero-btn:hover {
            color: #fff;
            transform: translateY(-4px) scale(1.02);
        }
        .whatsapp-btn {
            background: var(--whatsapp);
            border-color: var(--whatsapp);
        }
        .whatsapp-btn:hover {
            background: #1ebe5c;
            border-color: #1ebe5c;
            box-shadow: 0 12px 35px rgba(37,211,102,.35);
        }
        .primary-btn {
            background: var(--rojo);
            border-color: var(--rojo);
        }
        .amarillo-btn {
            background: var(--verde);
            border-color: var(--verde);
        }
        .amarillo-btn:hover {
            background: var(--verde);
            border-color: var(--verde);
            opacity: 0.85;
            box-shadow: 0 12px 35px rgba(231,0,0,.35);
        }
        .primary-btn:hover {
            background: var(--rojo);
            border-color: var(--rojo);
            opacity: 0.85;
            box-shadow: 0 12px 35px rgba(231,0,0,.35);
        }
        .hero-btn i {
            font-size: 20px;
        }

        /* FLECHAS */
        .hero-arrow {
            position: absolute;
            z-index: 5;
            top: 50%;
            transform: translateY(-50%);
            width: 52px;
            height: 52px;
            border: 0;
            border-radius: 50%;
            background: rgba(20,20,20,.7);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: .3s ease;
            backdrop-filter: blur(4px);
        }
        .hero-arrow:hover {
            background: var(--rojo);
            transform: translateY(-50%) scale(1.1);
        }
        .hero-prev { left: 20px; }
        .hero-next { right: 20px; }

        /* DOTS */
        .hero-dots {
            position: absolute;
            z-index: 5;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .hero-dot {
            width: 10px;
            height: 10px;
            border: 0;
            border-radius: 50%;
            background: rgba(255,255,255,.4);
            cursor: pointer;
            transition: .3s ease;
        }
        .hero-dot.active {
            width: 32px;
            border-radius: 20px;
            background: var(--amarillo);
        }

        /* =========================================================
           SECCIONES
        ========================================================= */
        .section {
            padding: 90px 0;
            overflow: hidden;
        }
        .section-light {
            background: var(--amarillo);
        }
        .section-light .service-card {
            background: rgba(255,255,255,.1);
            border-color: rgba(255,255,255,.2);
            backdrop-filter: blur(10px);
        }
        .section-dark {
            background: var(--negro);
            color: #fff;
        }
        .section-dark .section-title {
            color: #fff;
        }
        .section-dark .section-description {
            color: #ccc;
        }
        .section-title-wrap {
            max-width: 800px;
            margin: 0 auto 50px;
            text-align: center;
        }
        .section-label {
            display: inline-block;
            margin-bottom: 12px;
            color: var(--rojo);
            font-size: 14px;
            font-weight: 900;
            letter-spacing: 3px;
            text-transform: uppercase;
        }
        .section-dark .section-label {
            color: var(--amarillo);
        }
        .section-title {
            margin-bottom: 15px;
            font-family: 'Playfair Display', serif;
            font-size: clamp(30px, 4.5vw, 46px);
            font-weight: 800;
            color: var(--negro);
        }
        .section-title span {
            color: var(--rojo);
        }
        .section-dark .section-title span {
            color: var(--amarillo);
        }
        .section-description {
            color: var(--texto-gris);
            font-size: 17px;
            line-height: 1.8;
        }
        .section-dark .section-description {
            color: #ccc;
        }

        /* =========================================================
           BOTONES
        ========================================================= */
        .btn-rojo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 30px;
            border-radius: 8px;
            background: var(--rojo);
            color: #fff;
            font-weight: 700;
            font-size: 15px;
            border: 2px solid var(--rojo);
            transition: .3s ease;
        }
        .btn-rojo:hover {
            color: #fff;
            background: var(--rojo);
            border-color: var(--rojo);
            opacity: 0.85;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(231,0,0,.25);
        }
        .btn-verde {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 30px;
            border-radius: 8px;
            background: var(--verde);
            color: #fff;
            font-weight: 700;
            font-size: 15px;
            border: 2px solid var(--verde);
            transition: .3s ease;
        }
        .btn-verde:hover {
            color: #fff;
            background: var(--verde);
            border-color: var(--verde);
            opacity: 0.85;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,146,69,.25);
        }
        .btn-amarillo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 30px;
            border-radius: 8px;
            background: var(--amarillo);
            color: var(--negro);
            font-weight: 700;
            font-size: 15px;
            border: 2px solid var(--amarillo);
            transition: .3s ease;
        }
        .btn-amarillo:hover {
            color: var(--negro);
            background: var(--amarillo);
            border-color: var(--amarillo);
            opacity: 0.85;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(231,231,0,.3);
        }

        /* =========================================================
           SOBRE NOSOTROS
        ========================================================= */
        .about-image {
            width: 90%;
            height: 100%;
            object-fit: cover;
            border-radius: 16px;
            box-shadow: 0 20px 50px rgba(231,0,0,.15);
            border: 3px solid var(--amarillo);
        }
        .about-content {
            padding: 15px 10px 15px 35px;
        }
        .about-content h3 {
            margin-bottom: 18px;
            font-family: 'Playfair Display', serif;
            font-size: 34px;
            font-weight: 800;
        }
        .about-content h3 span {
            color: var(--rojo);
        }
        .about-content p {
            color: var(--texto-gris);
            line-height: 1.9;
            margin-bottom: 16px;
            font-size: 16px;
        }
        .about-list {
            list-style: none;
            padding: 0;
            margin: 25px 0;
        }
        .about-list li {
            display: flex;
            gap: 12px;
            margin-bottom: 12px;
            color: #444;
            font-size: 15px;
            font-weight: 500;
        }
        .about-list i {
            color: var(--verde);
            margin-top: 4px;
            font-size: 18px;
        }

        /* STATS */
        .stat-box {
            text-align: center;
            padding: 25px 15px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,.05);
            border: 2px solid transparent;
            transition: .3s ease;
        }
        .stat-box:hover {
            transform: translateY(-5px);
            border-color: var(--rojo);
            box-shadow: 0 12px 35px rgba(231,0,0,.1);
        }
        .stat-box .number {
            font-size: 36px;
            font-weight: 900;
            color: var(--rojo);
        }
        .stat-box .label {
            color: var(--texto-gris);
            font-size: 14px;
            font-weight: 700;
        }

        /* =========================================================
           SERVICIOS / CATEGORÍAS
        ========================================================= */
        .service-card {
            height: 100%;
            padding: 35px 25px;
            background: #fff;
            border: 2px solid #eee;
            border-radius: 16px;
            text-align: center;
            transition: .35s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,.03);
        }
        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--rojo);
            box-shadow: 0 20px 50px rgba(231,0,0,.1);
        }
        .service-icon {
            width: 72px;
            height: 72px;
            margin: 0 auto 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(0,146,69,.1);
            color: var(--verde);
            font-size: 30px;
            transition: .3s ease;
        }
        .service-card:hover .service-icon {
            background: var(--verde);
            color: #fff;
            transform: scale(1.05) rotate(-5deg);
        }
        .service-card h4 {
            margin-bottom: 12px;
            font-size: 20px;
            font-weight: 800;
            color: var(--negro);
        }
        .service-card p {
            color: var(--texto-gris);
            line-height: 1.7;
            margin: 0;
            font-size: 15px;
        }

        /* =========================================================
   DESTINOS / PORTAFOLIO
   ========================================================= */
.portfolio-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
    z-index: 1;
}
.portfolio-item-link:hover {
    color: inherit;
    text-decoration: none;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    height: 300px;
    border-radius: 16px;
    background: var(--negro);
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    border: 2px solid transparent;
    transition: .4s ease;
    cursor: pointer;
}

/* Efecto hover (opcional, solo visual) */
.portfolio-item-link:hover .portfolio-item,
.portfolio-item:hover {
    border-color: var(--amarillo);
    box-shadow: 0 12px 40px rgba(231,0,0,.15);
}

/* Feedback al hacer clic (efecto botón) */
.portfolio-item-link:active .portfolio-item {
    transform: scale(0.97);
    transition: transform .1s ease;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
    pointer-events: none;   /* ✅ la imagen NO bloquea el clic */
}

.portfolio-item-link:hover img,
.portfolio-item:hover img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    background: linear-gradient(
        transparent 0%,
        rgba(0,0,0,.35) 45%,
        rgba(54, 69, 79, 1) 100%
    );
    color: #fff;
    opacity: 1;
    transition: .4s ease;
    pointer-events: none;   /* ✅ el overlay NO bloquea el clic */
}

.portfolio-overlay span {
    color: var(--amarillo);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.portfolio-overlay h4 {
    margin: 7px 0 5px;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 800;
}

.portfolio-overlay p {
    font-size: 14px;
    opacity: .8;
    margin: 0;
}
        /* =========================================================
           GASTRONOMÍA - SECCIÓN CON FONDO VERDE
        ========================================================= */
        .gastronomia-section {
            background: var(--verde);
            color: #fff;
            padding: 60px 0;
            overflow: hidden;
        }
        .gastronomia-section .section-title {
            color: #fff;
        }
        .gastronomia-section .section-title span {
            color: var(--amarillo);
        }
        .gastronomia-section .section-description {
            color: #d4f5e0;
        }
        .gastronomia-section .section-label {
            color: var(--amarillo);
        }
        .gastronomia-section .service-card {
            background: rgba(255,255,255,.1);
            border-color: rgba(255,255,255,.2);
            backdrop-filter: blur(10px);
        }
        .gastronomia-section .service-card h4 {
            color: #fff;
        }
        .gastronomia-section .service-card p {
            color: #d4f5e0;
        }
        .gastronomia-section .service-icon {
            background: rgba(255,255,255,.15);
            color: var(--amarillo);
        }
        .gastronomia-section .service-card:hover {
            border-color: var(--amarillo);
            background: rgba(255,255,255,.2);
        }
        .gastronomia-section .service-card:hover .service-icon {
            background: var(--amarillo);
            color: var(--verde);
        }

        /* =========================================================
           SECCIÓN CULTURA DESTACADA - FONDO ROJO
        ========================================================= */
        .cultura-destacada {
            background: var(--rojo);
            color: #fff;
            padding: 60px 0;
            overflow: hidden;
        }
        .cultura-destacada .section-title {
            color: #fff;
        }
        .cultura-destacada .section-title span {
            color: var(--amarillo);
        }
        .cultura-destacada .section-description {
            color: #f0d0d0;
        }
        .cultura-destacada .service-card {
            background: rgba(255,255,255,.1);
            border-color: rgba(255,255,255,.2);
            backdrop-filter: blur(10px);
        }
        .cultura-destacada .service-card h4 {
            color: #fff;
        }
        .cultura-destacada .service-card p {
            color: #f0d0d0;
        }
        .cultura-destacada .service-icon {
            background: rgba(255,255,255,.15);
            color: var(--amarillo);
        }
        .cultura-destacada .service-card:hover {
            border-color: var(--amarillo);
            background: rgba(255,255,255,.2);
        }
        .cultura-destacada .service-card:hover .service-icon {
            background: var(--amarillo);
            color: var(--rojo);
        }

        /* =========================================================
           SECCIÓN MAPA
        ========================================================= */
        .mapa-container {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            border: 3px solid var(--amarillo);
            box-shadow: 0 12px 40px rgba(0,0,0,.1);
        }
        .mapa-container img {
            width: 100%;
            height: 450px;
            object-fit: cover;
        }
        .mapa-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(transparent 60%, rgba(231,0,0,.8) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 40px;
            color: #fff;
        }
        .mapa-overlay h3 {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 800;
        }
        .mapa-overlay span {
            color: var(--amarillo);
        }

        /* =========================================================
           CONTACTO
        ========================================================= */
        .contact-card {
            height: 100%;
            padding: 35px 25px;
            background: #fff;
            border: 2px solid #eee;
            border-radius: 16px;
            text-align: center;
            transition: .3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,.03);
        }
        .contact-card:hover {
            border-color: var(--rojo);
            box-shadow: 0 15px 40px rgba(231,0,0,.08);
            transform: translateY(-5px);
        }
        .contact-icon {
            color: var(--rojo);
            font-size: 32px;
            margin-bottom: 15px;
        }
        .contact-card h4 {
            font-size: 18px;
            font-weight: 800;
        }
        .contact-card p,
        .contact-card a {
            color: var(--texto-gris);
            line-height: 1.8;
        }
        .contact-card a:hover {
            color: var(--rojo);
        }

        /* =========================================================
           FLOATING BUTTONS
        ========================================================= */
        .floating-socials {
            position: fixed;
            left: 0;
            top: 55%;
            z-index: 9998;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .floating-socials a {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            border-radius: 0 22px 22px 0;
            font-size: 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,.15);
            transition: .3s ease;
        }
        .floating-socials a:hover {
            width: 54px;
        }
        .float-whatsapp { background: #25d366; }
        .float-instagram { background: linear-gradient(45deg,#f09433,#dc2743,#bc1888); }
        .float-facebook { background: #1877f2; } 
        .float-tiktok { background: #000000; }     
        /* BACK TO TOP */
        .back-top {
            position: fixed;
            right: 22px;
            bottom: 22px;
            z-index: 9998;
            width: 50px;
            height: 50px;
            border: 0;
            border-radius: 50%;
            background: var(--rojo);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: .3s ease;
            box-shadow: 0 8px 25px rgba(231,0,0,.3);
        }
        .back-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .back-top:hover {
            background: var(--rojo);
            opacity: 0.85;
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(231,0,0,.3);
        }

        /* =========================================================
           FOOTER
        ========================================================= */
        footer {
            background: var(--negro);
            color: #fff;
            border-top: 4px solid var(--amarillo);
        }
        .footer-main {
            padding: 70px 0 45px;
        }
        .footer-brand img {
            height: 110px;
            width: auto;
            margin-bottom: 18px;
        }
        .footer-brand p {
            max-width: 390px;
            color: #aaa;
            line-height: 1.9;
            font-size: 15px;
        }
        .footer-title {
            margin-bottom: 20px;
            font-size: 17px;
            font-weight: 800;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .footer-title::after {
            content: "";
            display: block;
            width: 35px;
            height: 3px;
            margin-top: 9px;
            background: var(--amarillo);
            border-radius: 4px;
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #aaa;
            transition: .25s ease;
            font-size: 14px;
            font-weight: 500;
        }
        .footer-links a:hover {
            color: var(--amarillo);
            padding-left: 5px;
        }
        .footer-contact {
            list-style: none;
            padding: 0;
        }
        .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 12px;
            color: #aaa;
            font-size: 14px;
        }
        .footer-contact i {
            color: var(--amarillo);
            width: 18px;
            margin-top: 4px;
        }
        .footer-contact a {
            color: #aaa;
            transition: .25s ease;
        }
        .footer-contact a:hover {
            color: var(--amarillo);
        }
        .footer-social {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 5px;
        }
        .footer-social a {
            width: 42px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #444;
            border-radius: 50%;
            color: #fff;
            transition: .3s ease;
            font-size: 16px;
        }
        .footer-social a:hover {
            background: var(--rojo);
            border-color: var(--rojo);
            transform: translateY(-3px);
        }
        .footer-bottom {
            border-top: 1px solid #333;
            padding: 22px 0;
            color: #888;
            font-size: 13px;
            text-align: center;
        }
        .footer-bottom a {
            color: #888;
            transition: .25s ease;
        }
        .footer-bottom a:hover {
            color: var(--amarillo);
        }

        /* =========================================================
           RESPONSIVE
        ========================================================= */
        @media (max-width: 1100px) {
            .topbar-container { padding: 0 18px; }
            .nav-container { padding: 0 18px; }
            .brand-logo img { height: 56px; }
            .main-navbar.scrolled .brand-logo img { height: 48px; }
            .nav-link-custom { padding: 11px 10px; font-size: 12px; }
            .nav-link-custom::after { left: 10px; right: 10px; }
            .about-content { padding-left: 10px; }
        }

        @media (max-width: 900px) {
            .topbar {
                min-height: 38px;
                background: linear-gradient(90deg, 
                    var(--rojo) 0%, 
                    var(--rojo) 15%, 
                    var(--amarillo) 50%, 
                    var(--verde) 85%, 
                    var(--verde) 100%
                );
            }
            .topbar-container {
                padding: 0 12px;
                min-height: 38px;
            }
            .topbar-info { gap: 9px; }
            .topbar-info span { font-size: 11px; }
            .topbar-info .email-top { display: none; }
            .top-social { height: 38px; }
            .top-social a { width: 30px; height: 38px; font-size: 12px; }

            .main-navbar,
            .main-navbar.scrolled { height: 68px; }
            .nav-container { padding: 0 15px; }
            .brand-logo img,
            .main-navbar.scrolled .brand-logo img { height: 48px; }
            .menu-toggle { display: flex; align-items: center; justify-content: center; }

            .main-menu {
                position: absolute;
                left: 0;
                right: 0;
                top: 68px;
                display: flex;
                flex-direction: column;
                align-items: stretch;
                padding: 8px 15px 18px;
                background: #fff;
                box-shadow: 0 20px 40px rgba(0,0,0,.12);
                max-height: 0;
                overflow-y: auto;
                opacity: 0;
                visibility: hidden;
                transition: max-height .4s ease, opacity .3s ease;
            }
            .main-menu.show {
                max-height: 80vh;
                opacity: 1;
                visibility: visible;
            }
            .nav-link-custom {
                width: 100%;
                padding: 14px 12px;
                border-bottom: 1px solid #f0f0f0;
                font-size: 14px;
            }
            .nav-link-custom::after { display: none; }

            .hero {
                min-height: calc(100vh - 106px);
            }
            .hero-content {
                min-height: calc(100vh - 106px);
                padding: 75px 25px 90px;
            }
            .hero-kicker { font-size: 14px; letter-spacing: 3px; }
            .hero-kicker span { width: 40px; }
            .hero-subtitle { margin: 15px 0 12px; font-size: 17px; letter-spacing: 4px; }
            .hero-description { font-size: 15px; line-height: 1.7; }
            .hero-btn { width: 100%; max-width: 280px; }
            .hero-arrow { width: 40px; height: 40px; font-size: 13px; }
            .hero-prev { left: 10px; }
            .hero-next { right: 10px; }

            .section { padding: 60px 0; }
            .about-image { height: 320px; margin-bottom: 25px; }
            .about-content { padding: 0; }
            .about-content h3 { font-size: 28px; }
            .portfolio-item { height: 250px; }
            .mapa-container img { height: 300px; }

            .floating-socials a { width: 38px; height: 38px; font-size: 17px; }
            .back-top { width: 44px; height: 44px; right: 15px; bottom: 15px; }
        }

        @media (max-width: 480px) {
            .topbar-info span:nth-child(3) { display: none; }
            .top-social a { width: 26px; }
            .brand-logo img,
            .main-navbar.scrolled .brand-logo img { height: 40px; }
            .hero-content { padding-left: 30px; padding-right: 30px; }
            .hero-title { font-size: 38px; }
            .hero-kicker { font-size: 11px; gap: 7px; }
            .hero-kicker span { width: 25px; }
            .hero-subtitle { font-size: 15px; letter-spacing: 3px; }
            .hero-description { font-size: 14px; }
            .hero-buttons { gap: 9px; }
            .hero-btn { padding: 13px 18px; font-size: 14px; }
            .hero-arrow { top: auto; bottom: 20px; transform: none; }
            .hero-arrow:hover { transform: scale(1.08); }
            .hero-prev { left: 15px; }
            .hero-next { right: 15px; }
            .hero-dots { bottom: 34px; }

            .about-image { height: 250px; }
            .stat-box .number { font-size: 28px; }
            .mapa-container img { height: 220px; }
            .mapa-overlay { padding: 25px; }
            .mapa-overlay h3 { font-size: 22px; }
        }
    </style>
   /* Oculta completamente el widget de Google */
#google_translate_element, .goog-te-banner-frame, .goog-te-gadget-icon {
  display: none !important;
}

/* Estilos para el selector oculto */
.goog-te-combo {
  opacity: 0;
  position: absolute;
  width: 1px;
  height: 1px;
}

/* Ocultar TODOS los elementos de Google Translate */
.goog-te-banner-frame, 
.goog-te-gadget-icon, 
.goog-te-combo, 
.goog-te-footer, 
.skiptranslate {
  display: none !important;
}
.goog-tooltip, 
.goog-tooltip:hover, 
.goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
body {
  top: 0 !important;
}
/* Estilo para botón activo */
.language-btn.active {
  box-shadow: 0 0 0 2px rgba(0, 0, 255, 0.3);
  font-weight: bold;
}
/* Dropdown de idiomas: letras negras y centradas */
.dropdown-menu .dropdown-item {
    color: black !important;
    text-align: center !important;
    justify-content: center !important;
    display: flex !important;
    align-items: center;
    width: 100% !important;
    padding: 8px 12px !important;
    margin: 0 !important;
    white-space: nowrap;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
    color: black !important;
    background-color: #f1f1f1 !important;
    text-align: center !important;
}

/* Que el menú tenga ancho mínimo y no se desborde */
.dropdown-menu {
    min-width: 150px !important;
    padding: 6px 0 !important;
    text-align: center !important;
    overflow: hidden;
}
/* Ocultar top-social solo en móviles */
@media (max-width: 767.98px) {
    .top-social > a[aria-label="Facebook"],
    .top-social > a[aria-label="TikTok"],
    .top-social > a[aria-label="Instagram"],
    .top-social > a[aria-label="WhatsApp"],
    .top-social > a[aria-label="YouTube"] {
        display: none !important;
    }
}
        /* =========================================================
   MODAL PUBLICIDAD FLOTANTE
========================================================= */
.promo-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;         /* ✅ clave */
    transition: opacity .35s ease, visibility .35s ease;
}
.promo-modal-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;         /* ✅ clave */
}

.promo-modal {
    position: relative;
    width: 100%;
    max-width: 700px;
    max-height: 85vh;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,.5);
    transform: scale(.9) translateY(20px);
    transition: transform .35s ease;
}
.promo-modal-overlay.show .promo-modal {
    transform: scale(1) translateY(0);
}

/* Botón cerrar */
.promo-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,.65);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease;
}
.promo-modal-close:hover {
    background: var(--rojo, #e70000);
    transform: rotate(90deg) scale(1.1);
}

/* Carrusel */
.promo-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #111;
    overflow: hidden;
}
.promo-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease;
}
.promo-slide.active {
    opacity: 1;
    visibility: visible;
}
.promo-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Flechas */
.promo-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,.55);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease;
}
.promo-nav:hover {
    background: var(--rojo, #e70000);
}
.promo-prev { left: 12px; }
.promo-next { right: 12px; }

/* Dots */
.promo-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 8;
}
.promo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.5);
    cursor: pointer;
    transition: .3s ease;
}
.promo-dot.active {
    background: var(--amarillo, #ffd700);
    transform: scale(1.3);
}

/* Responsive */
@media (max-width: 576px) {
    .promo-modal { max-width: 95%; }
    .promo-modal-close { width: 34px; height: 34px; font-size: 15px; }
    .promo-nav { width: 36px; height: 36px; }
}
/* =========================================================
   PUBLICIDAD - 3 BANNERS EN FILA (rotativos)
========================================================= */
.pub-banners-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.pub-banner-slot {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    background: #f8f9fa;
    position: relative;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
    transition: box-shadow .3s ease;
}
.pub-banner-slot:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,.1);
}
.pub-banner-slot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: opacity .6s ease, transform .6s ease;
}
.pub-banner-slot.fade-out img {
    opacity: 0;
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .pub-banners-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 40px;
    }
    .pub-banner-slot {
        height: 160px;
    }
}
@media (max-width: 480px) {
    .pub-banners-row {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 30px;
    }
    .pub-banner-slot {
        height: 140px;
    }
}