﻿:root {
        --navbar-height: 247px;
        --orange-1: #E89800;
        --orange-2: #DD5630;
        --blue-1: #263E4A;
        --blue-2: #345566;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    html,
    body {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }

    body {
        font-family: Arial, sans-serif;
    padding-top: 0;
    }

    .header {
    position: relative;
    min-height: 100vh;
    padding: 80px 16px 60px;
}


    img,
    video,
    iframe {
        display: block;
        max-width: 100%;
        height: auto;
    }

    h2,
    h3 {
        color: var(--blue-1);
    }

    h4,
    .price {
        color: var(--orange-2);
    }

    .price {
        font-weight: bold;
    }

    /* Banner superior */
    .banner-img {
        width: 100%;
        position: relative;
        margin-top: 0;
        overflow: hidden;
        z-index: 1;
    }

    .banner-img img {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
    }

    /* Navbar */
    .navbar {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        padding-top: 10px;
        padding-bottom: 10px;
        z-index: 1000;
        background: #ffffff; /* 🔥 blanco */
        backdrop-filter: blur(5px);
        transition: all 0.3s ease;
        box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    }
    .navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-collapse {
    justify-content: center;
}

.navbar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    width: 100%;
}

    .navbar .nav-link {
        color: var(--blue-1) !important;
        font-weight: 700;
        letter-spacing: 1px;
        text-shadow: none;
        margin: 0;
        text-align: center;
        font-size: 18px;
}

    .navbar .navbar-brand {
        color: var(--blue-1) !important;
    }

    .navbar.scrolled {
        background: #fff;
        box-shadow: 0 4px 18px rgba(0,0,0,0.12);
    }

    .navbar.scrolled .nav-link,
    .navbar.scrolled .navbar-brand {
        color: var(--blue-1) !important;
    }

    .navbar.scrolled .navbar-toggler-icon {
        filter: none;
    }

    .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.5);
    }

    .navbar-toggler-icon {
        filter: invert(1);
    }

    .logo-img {
        height: 180px;
    }

    /* Topbar */
    .topbar {
        width: 100%;
        overflow: hidden;
        background: transparent;
        margin-top: 0;
    }

    .topbar a {
        display: block;
        width: 100%;
        line-height: 0;
    }


    .topbar img {
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    /* Popup banner Dia de la madre */
/* Popup banner pantalla completa */
.topbar-popup {
    position: fixed;
    inset: 0;
    z-index: 3000;
    width: 100vw;
    height: 100vh;
    padding: 24px;
    background: rgba(0, 0, 0, 0.72);

    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar-popup.is-hidden {
    display: none;
}

.topbar-popup a {
    display: block;
    width: min(96vw, 1200px);
    line-height: 0;
}

.topbar-popup img {
    display: block;
    width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.topbar-close {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 3001;

    width: 40px;
    height: 40px;
    padding: 0;

    color: #ffffff;
    background: #263E4A;
    border: 2px solid #ffffff;
    border-radius: 50%;

    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.topbar-close:hover {
    background: #DD5630;
}

@media (max-width: 768px) {
    .topbar-popup {
        padding: 14px;
    }

    .topbar-popup a {
        width: 96vw;
    }

    .topbar-close {
        top: 12px;
        right: 12px;
    }
}
.promo-categorias {
    background: #263E4A;
    text-align: center;
    padding: 12px 0;
    position: relative;
    z-index: 1001;
    width: 100%;
    display: block;
}

.promo-categorias .container {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.categoria-link {
    display: inline-block;
    color: white !important;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 700;
}

.categoria-link:hover {
    color: #E89800 !important;
}


.categoria-link.active {
    color: white !important;
    font-weight: 700;
}

.navbar + .topbar-popup + .promo-categorias {
    margin-top: 0;
}

    .promo-text {
        font-weight: 500;
    }

    .promo-extra {
        opacity: 0.8;
    }

    /* Header con video */
    .header {
        position: relative;
        min-height: 100vh;
padding: 80px 16px 60px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
    }


    .video-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
    }

    .header::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 0;
    }

    .header .container {
        position: relative;
        z-index: 2;
    }

    .header-title {
        font-size: clamp(1.6rem, 5vw, 3.2rem);
        line-height: 1.15;
        font-weight: 800;
        color: white;
        text-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
        margin-bottom: 15px;
    }

    .header-subtitle {
        max-width: 600px;
        margin: 0 auto 30px;
        padding: 0 10px;
        font-size: clamp(0.95rem, 2.2vw, 1.15rem);
        opacity: 0.95;
    }

    .header-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .header-buttons .btn {
        margin: 0;
        padding: 14px 30px;
        border-radius: 50px;
        font-weight: 600;
        max-width: 100%;
        white-space: normal;
        overflow: hidden;
    }

    /* Botones */
    .btn-primary,
    .btn-secondary {
        border: none;
        color: white;
        position: relative;
        z-index: 1;
        transition: all 0.3s ease;
    }

    .btn-primary {
        background: linear-gradient(45deg, var(--orange-1), var(--orange-2));
    }

    .btn-secondary {
        background: linear-gradient(45deg, var(--blue-1), var(--blue-2));
    }

    .btn-primary::before,
    .btn-secondary::before {
        content: "";
        position: absolute;
        inset: -2px;
        border-radius: 50px;
        filter: blur(12px);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: -1;
    }

    .btn-primary::before {
        background: linear-gradient(45deg, var(--orange-1), var(--orange-2));
    }

    .btn-secondary::before {
        background: linear-gradient(45deg, var(--blue-1), var(--blue-2));
    }

    .btn-primary:hover::before,
    .btn-secondary:hover::before {
        opacity: 1;
    }

    .btn-primary:hover,
    .btn-secondary:hover {
        transform: translateY(-3px) scale(1.03);
    }

    .btn-cotizar {
        display: inline-block;
        background: linear-gradient(45deg, var(--orange-1), var(--orange-2));
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 30px;
        font-weight: 600;
        text-decoration: none;
        cursor: pointer;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        animation: fadeInUp 0.6s ease;
        position: relative;
        z-index: 3;
    }

    .btn-cotizar:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        background: linear-gradient(45deg, var(--orange-2), var(--orange-1));
    }

    .btn-cotizar:active {
        transform: scale(0.95);
    }

    /* Secciones */
    .section,
    .galeria {
        padding: 60px 0;
    }

    .galeria,
    .promo-section,
    .kit-viajero,
    .contact-section {
        background-color: #f8f9fa;
    }

    /* Cards */
    .card {
        border: none;
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        height: 100%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .card-title {
        font-weight: bold;
    }

    .card-body {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        z-index: 2;
    }

    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    .card-img-top {
        height: 200px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .card:hover .card-img-top {
        transform: scale(1.1);
    }

    .card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0);
        transition: 0.3s ease;
        pointer-events: none;
    }

    .card:hover::after {
        background: rgba(0, 0, 0, 0.05);
    }

    /* Beneficios */
    .beneficios {
        padding: 35px 20px;
        text-align: center;
    }

    .beneficios h2 {
        color: var(--blue-1);
        font-weight: 800;
        font-size: 1.7rem;
        margin-bottom: 6px;
    }

    .contenedor-beneficios {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
        margin-top: 25px;
        background: var(--blue-1);
        padding: 24px;
        border-radius: 10px;
    }

    .item {
        background: #f5f5f5;
        padding: 18px 16px;
        border-radius: 10px;
        transition: 0.3s;
    }

    .item:hover {
        transform: translateY(-5px);
    }

    .item h3 {
        color: #2c3e50;
        font-size: 1.15rem;
        margin-bottom: 8px;
    }

    .item p {
        color: #555;
        font-size: 13px;
        margin-bottom: 0;  
    }

  .icono {
    background: white;
    width: 54px;
    height: 54px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}


    /* Fade in */
    .fade-in {
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.8s ease;
    }

    .fade-in.show {
        opacity: 1;
        transform: translateY(0);
    }

    .item:nth-child(1) {
        transition-delay: 0.1s;
    }

    .item:nth-child(2) {
        transition-delay: 0.2s;
    }

    .item:nth-child(3) {
        transition-delay: 0.3s;
    }

    .item:nth-child(4) {
        transition-delay: 0.4s;
    }

    /* Galería */
    .slider,
    .netflix-slider {
        overflow: hidden;
        position: relative;
        width: 100%;
        max-width: 100%;
        padding: 10px 0;
    }

    .netflix-track {
        display: flex;
        gap: 20px;
        width: max-content;
        animation: scroll 25s linear infinite;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }

   .galeria-img {
    width: 480px;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    object-position: center;
    background: #f8f9fa;
    border-radius: 16px;
    flex-shrink: 0;
}

    .netflix-slider:hover .netflix-track {
        animation-play-state: paused;
    }

    /* Stats */
    .stats {
        background: var(--blue-1);
        color: white;
        padding: 40px 0;
        text-align: center;
    }

    .stats h3 {
        font-size: 2.5rem;
        font-weight: bold;
    }

    /* Footer */
    .footer {
        background: var(--blue-1);
        color: white;
        padding: 20px 0;
        text-align: center;
    }

    /* Flotantes */
    .whatsapp-float {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        background: #25D366;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        animation: pulse 1.5s infinite;
        transition: transform 0.3s ease;
    }

    .whatsapp-float img {
        width: 35px;
        height: 35px;
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
    }

    .social-float-pro {
        position: fixed;
        right: 12px;
        bottom: 20px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        z-index: 999;
        max-width: calc(100vw - 24px);
    }

    .social-float-pro a {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        background: #fff;
        border-radius: 30px;
        padding: 8px;
        width: 44px;
        max-width: 44px;
        overflow: hidden;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .social-float-pro img {
        width: 25px;
    }

    .social-float-pro span {
        display: none;
        opacity: 0;
        margin-right: 10px;
        color: #333;
        font-size: 14px;
        white-space: nowrap;
        transition: 0.3s;
    }

    .social-float-pro .whatsapp {
        background: #25D366;
        animation: pulse 1.5s infinite;
    }

   .mundial-img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

    /* Animaciones */
    @keyframes pulse {
        0% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        }

        70% {
            transform: scale(1.1);
            box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
        }

        100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes smartScroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    /* Responsive */
   @media (max-width: 768px) {
    :root {
        --navbar-height: 145px;
    }
        .navbar-nav {
            gap: 0;
        }

        .header {
            padding-top: 140px;
        }

        .header-title {
            font-size: 2.2rem;
        }

        .header-subtitle {
            font-size: 1rem;
        }

        .contenedor-beneficios {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            padding: 24px;
        }
          .item {
        padding: 16px 14px;
    }

    .icono {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

        .galeria-img {
    width: min(85vw, 260px);
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
    @media (max-width: 767.98px) {
        :root {
            --navbar-height: 125px;
        }

        .logo-img {
            height: 56px;
        }

        .beneficios{
        padding: 30px 16px;
        }
        .galeria,
        .section {
            padding-top: 48px;
            padding-bottom: 48px;
        }

        .contenedor-beneficios {
            grid-template-columns: 1fr;
            padding: 14px;
            gap: 14px;
        }

        .header {
            padding-top: 130px;
            padding-bottom: 40px;
        }

        .header-title {
            font-size: 1.8rem;
            line-height: 1.2;
        }

        .header-subtitle {
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .header-buttons {
            flex-direction: column;
            align-items: stretch;
        }

        .header-buttons .btn {
            width: 100%;
        }

        .header .container {
            padding-left: 16px;
            padding-right: 16px;
        }

      .galeria-img {
    width: min(80vw, 360px);
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
}


        .social-float-pro {
            bottom: 12px;
            right: 10px;
        }

        .social-float-pro a:hover {
            width: 44px;
        }
    }

    .oficina-section {
        background: linear-gradient(180deg, #f7f8fa 0%, #eef3f6 100%);
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .oficina-card-pro {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        background: #ffffff;
        border-radius: 20px;
        padding: 24px;
        box-shadow: 0 12px 30px rgba(25, 45, 58, 0.10);
        border: 1px solid rgba(38, 62, 74, 0.08);
        max-width: 950px;
        margin: 0 auto;
    }

    .oficina-info h2 {
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--blue-1);
        margin-bottom: 10px;
    }

    .oficina-chip {
        display: inline-block;
        margin-bottom: 10px;
        padding: 6px 12px;
        border-radius: 999px;
        background: rgba(232, 152, 0, 0.12);
        color: var(--orange-2);
        font-size: 0.8rem;
        font-weight: 700;
    }

    .oficina-lead {
        color: #52606d;
        line-height: 1.6;
        font-size: 0.98rem;
        margin-bottom: 18px;
    }

    .oficina-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .oficina-data {
        background: #f8fafb;
        border-radius: 16px;
        padding: 18px;
    }

    .oficina-item + .oficina-item {
        margin-top: 14px;
        padding-top: 14px;
        border-top: 1px solid rgba(38, 62, 74, 0.08);
    }

    .oficina-label {
        display: block;
        color: var(--orange-2);
        font-weight: 800;
        font-size: 0.82rem;
        margin-bottom: 6px;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .oficina-item p {
        margin: 0 0 4px;
        color: #344054;
        line-height: 1.5;
        font-size: 0.95rem;
    }

    .oficina-item p:last-child {
        margin-bottom: 0;
    }

    .oficina-item a {
        color: var(--blue-1);
        text-decoration: none;
        font-weight: 600;
    }

    .oficina-item a:hover {
        color: var(--orange-2);
        text-decoration: underline;
    }

    .oficina-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    @media (max-width: 991.98px) {
        .oficina-card-pro {
            grid-template-columns: 1fr;
            padding: 20px;
            max-width: 100%;
        }

        .oficina-info h2 {
            font-size: 1.6rem;
        }
    }

    @media (max-width: 767.98px) {
        .oficina-section {
            padding-top: 30px;
            padding-bottom: 30px;
        }

        .oficina-card-pro {
            padding: 16px;
            border-radius: 16px;
        }

        .oficina-actions {
            flex-direction: column;
        }

        .oficina-actions .btn {
            width: 100%;
        }

        .oficina-data {
            padding: 16px;
        }

        .oficina-info h2 {
            font-size: 1.4rem;
        }

        .oficina-lead,
        .oficina-item p {
            font-size: 0.92rem;
        }
    }


    .trm-item {
        position: fixed;   /* 🔥 CLAVE */
        top: 12px;
        left: calc((100% - 1400px) / 2 + 20px);
        z-index: 2000;

        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 14px;

        padding: 10px 14px;
        border-radius: 12px;

        background: #ffffff;
        border: 1px solid rgba(0,0,0,0.08);
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);

        font-size: 14px;
        color: #263E4A;

        white-space: nowrap;
    }

    @media (max-width: 768px) {
        .trm-item {
            position: static;   /* 🔥 deja de ser flotante */
            margin: 8px auto 0;
            justify-content: center;
            width: fit-content;
        }
    }
    /* Título */
    .trm-title {
        font-size: 10px;
        color: #345566;
        text-align: left;
        font-weight: 600;
        margin-bottom: 2px;
        letter-spacing: 0.5px;
    }

    /* Contenido (ajuste leve) */
    .trm-content {
        display: flex;
        align-items: center;
        gap: 12px;

        font-size: 18px;
        font-weight: 700;
    }

    /* Subió */
    .up {
        color: #00ff88; /* verde */
    }

    /* Bajó */
    .down {
        color: #ff4d4d; /* rojo */
    }

    /* Flechas */
    #usd-arrow,
    #eur-arrow {
        font-size: 11px;
        margin-right: 4px;
    }

    

.promo-categorias .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}


    .categoria-link {
        color: white !important; /* 🔥 siempre blanco */
        margin: 0 15px;
        text-decoration: none;
        font-weight: 600;
        transition: 0.3s;
    }

    .categoria-link:hover {
        color: #E89800 !important; /* 🔥 naranja al pasar el cursor */
    }

    .categoria-link:hover {
        color: #E89800; /* 🔥 naranja */
        transform: translateY(-2px);
    }

    header.header {
        margin-top: 0;
        position: relative;
        z-index: 1;
    }

 
    @media (max-width: 768px) {
    .promo-categorias .container {
        gap: 14px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .categoria-link {
        flex: 0 0 auto;
        font-size: 13px;
        margin: 0 8px;
    }
}

     
        header.header {
            margin-top: 0 !important;
        }

    .header {
        isolation: isolate;
    }
  
    @media (max-width: 768px) {
        .header {
            min-height: calc(100vh - 120px);
        }
    }
    @media (max-width: 768px) {
        .navbar {
            padding-top: 6px;
            padding-bottom: 6px;
        }

        .nav-link {
            padding: 6px 0;
            font-size: 14px;
        }
    }

    /* seccion europa */
    .europa-hero {
        background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                    url('img/europa-banner.jpg') center/cover;
        color: white;
        text-align: center;
        padding: 120px 20px;
    }

    .europa-galeria {
        padding: 60px 20px;
        background: #f8f9fa;
    }

    /* Slider */
    .slider {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .track {
        display: flex;
        gap: 20px;
        width: max-content;
        padding: 20px 0;
    }

    /* Cards */
    .card-europa {
        scroll-snap-align: start;
        position: relative;
        width: 250px;
        height: 350px;
        border-radius: 12px;
        overflow: hidden;
        flex-shrink: 0;
        transition: 0.4s ease;
        cursor: pointer;
    }

    .card-europa img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.4s ease;
    }

    .card-europa:hover {
        transform: scale(1.1);
        z-index: 5;
    }

    /* Overlay */
    .overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.4);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 18px;
        opacity: 0;
        transition: 0.3s;
    }

    .categoria-link.active {
        color: white !important;
        font-weight: bold;
    }

    @media (max-width: 768px) {

        .track {
            gap: 12px;
            padding: 10px 0;
        }

        .card-europa {
            width: 180px;
            height: 260px;
        }

        .overlay {
            font-size: 13px;
            padding: 10px;
        }

        .europa-hero {
            padding: 80px 15px;
        }

        .europa-hero h1 {
            font-size: 1.8rem;
        }

        .europa-hero p {
            font-size: 0.95rem;
        }
    }
    @media (min-width: 769px) and (max-width: 1024px) {

        .card-europa {
            width: 220px;
            height: 300px;
        }

        .track {
            gap: 16px;
        }

        .europa-hero h1 {
            font-size: 2.2rem;
        }
    }
    #inicio {
        height: 60vh;
        position: relative;
        overflow: hidden;
    }

    #inicio .video-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #inicio .container {
        position: relative;
        z-index: 2;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #inicio::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.4);
        top: 0;
        left: 0;
        z-index: 1;
    }
    #inicio {
        height: 60vh;
        min-height: 0; /* 🔥 ESTO ES LA CLAVE */
    }
    /* CTA Europa */
    .cta-europa {
        background: linear-gradient(45deg, #263E4A, #345566) !important;
        color: white;
    }

    .cta-europa h2,
    .cta-europa p {
        color: white;
    }

    /* CTA Europa */
    .cta-europa {
        background: linear-gradient(45deg, #263E4A, #345566) !important;
        color: white;
    }

    .cta-europa h2,
    .cta-europa p {
        color: white;
    }

    .cta-europa .btn {
        margin-top: 20px;
        padding: 14px 30px;
        font-size: 16px;
        border-radius: 40px;
    }

    section.cta-europa {
        background-color: #263E4A !important;
        color: white !important;
        background: linear-gradient(45deg, #263E4A, #345566) !important;
    }

    section.cta-europa {
        background-color: #263E4A !important; /* azul sólido */
        color: white !important;
        background: linear-gradient(45deg, #263E4A, #345566) !important;
    }

    .video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100% !important;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    background: #263E4A;
}
.header::before,
#inicio::before {
    z-index: 1;
}

.header .container,
#inicio .container {
    position: relative;
    z-index: 2;
}

/* Oculta controles nativos que algunos móviles muestran sobre videos inline */
.video-bg::-webkit-media-controls {
    display: none !important;
}

.video-bg::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
}

/* FIX menu categorias */
.promo-categorias {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: #263E4A !important;
    position: relative !important;
    z-index: 1100 !important;
    width: 100% !important;
    padding: 12px 0 !important;
    margin: 0 !important;
    clear: both;
}

.promo-categorias .container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 18px !important;
}

.promo-categorias .categoria-link {
    display: inline-block !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    margin: 0 8px !important;
}

.promo-categorias .categoria-link:hover {
    color: #E89800 !important;
}

@media (max-width: 768px) {
    .promo-categorias .container {
        gap: 10px !important;
        padding: 0 10px !important;
    }

    .promo-categorias .categoria-link {
        font-size: 13px !important;
        margin: 0 4px !important;
    }
}
/* Separador Mundial 2026 */
.worldcup-divider {
    position: relative;
    height: 120px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
        url("../img/fondodut.jpg") center/cover no-repeat;
    background-size: 42px 42px, 100% 100%, cover;
}

.field-line {
    position: absolute;
    top: 50%;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(18, 51, 71, 0.55), transparent);
    transform: translateY(-50%);
}

.field-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 58px;
    height: 58px;
    border: 2px solid rgba(18, 51, 71, 0.28);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.ball-track {
    position: absolute;
    top: calc(50% - 24px);
    left: -150px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    z-index: 2;
    animation: worldcup-run 3.8s linear infinite !important;
    -webkit-animation: worldcup-run 3.8s linear infinite !important;
}

.worldcup-ball,
.ball-track .football-ball {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    line-height: 1;
    filter: drop-shadow(0 8px 10px rgba(15, 23, 42, 0.18));
    animation: worldcup-spin 0.65s linear infinite;
    -webkit-animation: worldcup-spin 0.65s linear infinite;
}

.speed-line {
    display: block;
    height: 3px;
    border-radius: 999px;
    background: rgba(221, 86, 48, 0.7);
    animation: speed-fade 0.7s ease-in-out infinite;
    -webkit-animation: speed-fade 0.7s ease-in-out infinite;
}

.speed-line-1 {
    width: 34px;
}

.speed-line-2 {
    width: 22px;
    animation-delay: 0.12s;
}

.speed-line-3 {
    width: 14px;
    animation-delay: 0.24s;
}

@keyframes worldcup-run {
    from {
        left: -150px;
    }

    to {
        left: calc(100% + 150px);
    }
}

@-webkit-keyframes worldcup-run {
    from {
        left: -150px;
    }

    to {
        left: calc(100% + 150px);
    }
}

@keyframes worldcup-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes worldcup-spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes speed-fade {
    0%, 100% {
        opacity: 0.15;
        transform: scaleX(0.6);
    }

    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

@-webkit-keyframes speed-fade {
    0%, 100% {
        opacity: 0.15;
        -webkit-transform: scaleX(0.6);
    }

    50% {
        opacity: 1;
        -webkit-transform: scaleX(1);
    }
}

@media (max-width: 576px) {
    .worldcup-divider {
        height: 78px;
    }

    .ball-track {
        top: calc(50% - 20px);
        left: -130px;
        animation: worldcup-run-mobile 3s linear infinite !important;
        -webkit-animation: worldcup-run-mobile 3s linear infinite !important;
    }

    .worldcup-ball,
    .ball-track .football-ball {
        width: 40px;
        height: 40px;
        font-size: 1.65rem;
    }
}

@keyframes worldcup-run-mobile {
    from {
        left: -130px;
    }

    to {
        left: calc(100% + 130px);
    }
}

@-webkit-keyframes worldcup-run-mobile {
    from {
        left: -130px;
    }

    to {
        left: calc(100% + 130px);
    }
}

