/* =====================================================
   COLORES PRINCIPALES
===================================================== */

:root {
    --blanco: #ffffff;
    --dorado: #C9A227;
    --dorado-claro: #D4AF37;
    --dorado-oscuro: #9d7815;
    --negro: #1a1a1a;
    --gris: #666666;
    --gris-claro: #f5f5f5;
}


/* =====================================================
   CONFIGURACIÓN GENERAL
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
}

body {
    width: 100%;
    min-height: 100vh;

    margin: 0;
    padding: 0;

    font-family: Arial, Helvetica, sans-serif;

    background-color: var(--blanco);
    color: var(--negro);

    overflow-x: hidden;
}

a {
    transition: 0.3s ease;
}

button {
    font-family: inherit;
}

/* =====================================================
   LOADER / PANTALLA DE CARGA
===================================================== */

.loader {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;
    height: 100dvh;

    background-color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 99999;

    opacity: 1;
    visibility: visible;

    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}


/* =====================================================
   CONTENIDO DEL LOADER
===================================================== */

.loader-content {
    width: 100%;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;
}


/* =====================================================
   LOGO
===================================================== */

.loader-content img {
    width: 330px;
    max-width: 75vw;

    height: auto;

    display: block;

    object-fit: contain;
}


/* =====================================================
   TEXTO
===================================================== */

.loader-content p {
    margin-top: 18px;

    color: #666666;

    font-size: 14px;

    letter-spacing: 0.5px;

    margin-bottom: 0;
}


/* =====================================================
   LÍNEA DORADA
===================================================== */

.loader-line {
    width: 0;
    height: 3px;

    margin-top: 25px;

    background-color: #C9A227;

    border-radius: 10px;

    animation:
        loading-line 1.5s ease forwards;
}


/* =====================================================
   ANIMACIÓN DE LA LÍNEA
===================================================== */

@keyframes loading-line {

    from {
        width: 0;
    }

    to {
        width: 220px;
    }

}


/* =====================================================
   LOADER OCULTO
===================================================== */

.loader-hidden {
    opacity: 0;
    visibility: hidden;

    pointer-events: none;
}


/* =====================================================
   LOADER EN CELULAR
===================================================== */

@media (max-width: 600px) {

    .loader-content img {
        width: 260px;
        max-width: 75vw;
    }

    .loader-line {
        margin-top: 20px;
    }

}


@media (max-width: 380px) {

    .loader-content img {
        width: 220px;
    }

    @keyframes loading-line {

        from {
            width: 0;
        }

        to {
            width: 170px;
        }

    }

}


/* =====================================================
   HEADER
===================================================== */

.header {
    width: 100%;
    min-height: 85px;

    background: rgba(255, 255, 255, 0.98);

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 10px 4%;

    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.08);

    position: sticky;
    top: 0;

    z-index: 1000;

    transition: 0.3s ease;
}

.header-scroll {
    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.14);
}


/* =====================================================
   LOGO
===================================================== */

.logo-container {
    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.logo {
    width: 150px;
    height: 65px;

    object-fit: contain;

    display: block;
}


/* =====================================================
   MENÚ
===================================================== */

.menu {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 25px;
}

.menu a {
    text-decoration: none;

    color: #333;

    font-weight: bold;

    font-size: 15px;

    position: relative;

    padding: 8px 0;
}

.menu a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: var(--dorado);

    transition: 0.3s ease;
}

.menu a:hover {
    color: var(--dorado-oscuro);
}

.menu a:hover::after {
    width: 100%;
}


/* =====================================================
   REDES SOCIALES
===================================================== */

.redes-sociales {
    display: flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}

.redes-sociales a {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--dorado);

    font-size: 19px;

    text-decoration: none;

    border: 1px solid transparent;

    border-radius: 50%;

    transition: 0.3s ease;
}

.redes-sociales a:hover {
    color: var(--dorado-oscuro);

    border-color: var(--dorado);

    transform: scale(1.1);
}


/* =====================================================
   HERO
===================================================== */

.hero {
    width: 100%;

    min-height: 520px;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.45)
        ),
        url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1600&q=80");

    background-size: cover;

    background-position: center;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: white;

    padding: 40px 20px;
}

.hero-contenido {
    width: 100%;

    max-width: 850px;

    margin: auto;
}

.hero-subtitulo {
    color: var(--dorado-claro);

    font-size: 16px;

    font-weight: bold;

    letter-spacing: 3px;

    margin-bottom: 15px;
}

.hero h1 {
    font-size: 52px;

    line-height: 1.15;

    margin-bottom: 20px;
}

.hero-texto {
    font-size: 20px;

    line-height: 1.6;

    margin-bottom: 30px;

    color: #f5f5f5;
}

.hero-button {
    display: inline-block;

    padding: 14px 30px;

    background: var(--dorado);

    color: white;

    text-decoration: none;

    border-radius: 30px;

    font-weight: bold;

    transition: 0.3s ease;
}

.hero-button:hover {
    background: var(--dorado-oscuro);

    transform: scale(1.05);
}


/* =====================================================
   TÍTULOS DE SECCIÓN
===================================================== */

.seccion-titulo {
    text-align: center;

    max-width: 850px;

    margin: 0 auto 45px;
}

.seccion-titulo p {
    color: var(--dorado);

    font-weight: bold;

    font-size: 14px;

    letter-spacing: 2px;

    margin-bottom: 8px;
}

.seccion-titulo h2 {
    font-size: 38px;

    color: #222;

    margin-bottom: 12px;
}

.seccion-titulo span {
    color: #666;

    font-size: 17px;
}


/* =====================================================
   EXPERIENCIAS
===================================================== */

.experiencias {
    width: 100%;

    padding: 80px 6%;

    background: white;

    text-align: center;
}

.experiencias-grid {
    width: 100%;

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 30px;
}

.experiencia-card {
    background: #ffffff;

    padding: 40px 30px;

    border-radius: 18px;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.12);

    transition: 0.3s ease;

    cursor: pointer;

    border: 1px solid #eeeeee;
}

.experiencia-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.17);
}

.experiencia-icono {
    font-size: 48px;

    margin-bottom: 18px;
}

.experiencia-card h3 {
    font-size: 25px;

    margin-bottom: 14px;

    color: var(--dorado-oscuro);
}

.experiencia-card p {
    color: #666;

    line-height: 1.6;

    margin-bottom: 22px;
}

.experiencia-card button {
    border: none;

    background: var(--negro);

    color: white;

    padding: 11px 22px;

    border-radius: 25px;

    cursor: pointer;

    font-weight: bold;

    transition: 0.3s ease;
}

.experiencia-card button:hover {
    background: var(--dorado);
}


/* =====================================================
   DESTINOS
===================================================== */

.seccion-destinos {
    display: none;

    width: 100%;

    min-height: 100vh;

    padding: 70px 5%;

    background: var(--gris-claro);
}

.seccion-destinos.seccion-activa {
    display: block;
}

.destinos-titulo {
    text-align: center;

    margin-bottom: 45px;
}

.destinos-titulo h2 {
    font-size: 40px;

    color: #222;

    margin: 20px 0 10px;
}

.destinos-titulo p {
    color: #666;

    font-size: 17px;
}

.volver-inicio {
    border: none;

    background: var(--dorado);

    color: white;

    padding: 11px 22px;

    border-radius: 25px;

    cursor: pointer;

    font-weight: bold;

    transition: 0.3s ease;
}

.volver-inicio:hover {
    background: var(--dorado-oscuro);

    transform: translateY(-2px);
}


/* =====================================================
   GRID DESTINOS
===================================================== */

.destinos-grid {
    width: 100%;

    max-width: 1300px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;
}


/* =====================================================
   TARJETAS DE DESTINOS
===================================================== */

.destino-card {
    background: white;

    border-radius: 15px;

    overflow: hidden;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.10);

    transition: 0.3s ease;

    cursor: pointer;
}

.destino-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.15);
}

.destino-card img {
    width: 100%;

    height: 190px;

    object-fit: cover;

    display: block;

    transition: 0.4s ease;
}

.destino-card:hover img {
    transform: scale(1.04);
}

.destino-contenido {
    padding: 20px;
}

.destino-contenido h3 {
    color: var(--dorado-oscuro);

    font-size: 22px;

    margin-bottom: 10px;
}

.destino-contenido p {
    color: #666;

    line-height: 1.5;
}


/* =====================================================
   OTROS DESTINOS
===================================================== */

.otros-destinos {
    width: 100%;

    max-width: 900px;

    margin: 50px auto 0;

    text-align: center;

    background: white;

    padding: 35px;

    border-radius: 18px;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.10);
}

.otros-destinos h3 {
    font-size: 28px;

    color: #222;

    margin-bottom: 12px;
}

.otros-destinos p {
    color: #666;

    line-height: 1.6;

    margin-bottom: 25px;
}

.boton-destinos {
    display: inline-block;

    background: var(--dorado);

    color: white;

    text-decoration: none;

    padding: 13px 28px;

    border-radius: 25px;

    font-weight: bold;

    transition: 0.3s ease;
}

.boton-destinos:hover {
    background: var(--dorado-oscuro);

    transform: scale(1.05);
}


/* =====================================================
   VISAS
===================================================== */

.visas {
    width: 100%;

    padding: 80px 6%;

    background: #f8f8f8;
}

.visas-grid {
    width: 100%;

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;
}

.visa-card {
    background: white;

    padding: 30px 25px;

    border-radius: 18px;

    text-align: center;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.10);

    transition: 0.3s ease;
}

.visa-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.15);
}

.visa-icono {
    font-size: 45px;

    margin-bottom: 15px;
}

.visa-card h3 {
    color: var(--dorado-oscuro);

    font-size: 22px;

    margin-bottom: 12px;
}

.visa-card p {
    color: #666;

    line-height: 1.6;

    margin-bottom: 20px;
}

.visa-card button {
    border: none;

    background: var(--dorado);

    color: white;

    padding: 10px 20px;

    border-radius: 25px;

    cursor: pointer;

    font-weight: bold;

    transition: 0.3s ease;
}

.visa-card button:hover {
    background: var(--dorado-oscuro);
}


/* =====================================================
   NOVEDADES
===================================================== */

.novedades {
    width: 100%;

    padding: 80px 6%;

    background: white;
}

.novedades-grid {
    width: 100%;

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 30px;
}

.novedad-card {
    background: white;

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.12);

    border: 1px solid #eeeeee;

    transition: 0.3s ease;
}

.novedad-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.16);
}

.novedad-card img {
    width: 100%;

    height: 230px;

    object-fit: cover;

    display: block;
}

.novedad-contenido {
    padding: 25px;
}

.novedad-contenido span {
    color: var(--dorado);

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 1.5px;
}

.novedad-contenido h3 {
    font-size: 23px;

    margin: 10px 0 12px;

    color: #222;
}

.novedad-contenido p {
    color: #666;

    line-height: 1.6;

    margin-bottom: 20px;
}

.boton-novedad {
    display: inline-block;

    background: var(--negro);

    color: white;

    text-decoration: none;

    padding: 10px 20px;

    border-radius: 22px;

    font-size: 13px;

    font-weight: bold;
}

.boton-novedad:hover {
    background: var(--dorado);
}


/* =====================================================
   QUIÉNES SOMOS
===================================================== */

.nosotros {
    width: 100%;

    padding: 80px 6%;

    background: #f7f7f7;
}

.nosotros-contenido {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 60px;

    align-items: center;
}

.nosotros-texto {
    padding: 20px 0;
}

.seccion-pequena {
    color: var(--dorado);

    font-weight: bold;

    letter-spacing: 2px;

    font-size: 14px;

    margin-bottom: 10px;
}

.nosotros-texto h2 {
    font-size: 40px;

    color: #222;

    margin-bottom: 20px;
}

.nosotros-texto p {
    color: #666;

    line-height: 1.7;

    margin-bottom: 18px;
}

.nosotros-texto .hero-button {
    margin-top: 10px;
}

.nosotros-imagen {
    width: 100%;

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.15);
}

.nosotros-imagen img {
    width: 100%;

    height: 400px;

    object-fit: cover;

    display: block;
}

/* =====================================================
   QUIÉNES SOMOS - INFORMACIÓN DETALLADA
===================================================== */

.nosotros-detalle {
    display: none;

    width: 100%;
    min-height: 100vh;

    padding: 70px 5%;

    background: #f5f5f5;
}


.nosotros-detalle.nosotros-visible {
    display: block;
}


.nosotros-detalle-contenido {
    width: 100%;
    max-width: 1000px;

    margin: auto;
}


/* =====================================================
   BOTÓN VOLVER
===================================================== */

.volver-nosotros {
    border: none;

    background: #C9A227;

    color: white;

    padding: 11px 22px;

    border-radius: 25px;

    cursor: pointer;

    font-weight: bold;

    margin-bottom: 45px;

    transition: 0.3s ease;
}


.volver-nosotros:hover {
    background: #9d7815;

    transform: translateX(-3px);
}


/* =====================================================
   TARJETAS MISIÓN Y VISIÓN
===================================================== */

.nosotros-info-card {
    background: white;

    padding: 35px;

    margin-bottom: 30px;

    border-radius: 20px;

    display: flex;

    align-items: flex-start;

    gap: 25px;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.10);

    transition: 0.3s ease;
}


.nosotros-info-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.15);
}


/* =====================================================
   ICONOS
===================================================== */

.nosotros-info-icono {
    width: 65px;
    height: 65px;

    flex: 0 0 65px;

    border-radius: 50%;

    background: #C9A227;

    color: white;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 30px;
}


/* =====================================================
   TÍTULOS
===================================================== */

.nosotros-info-card h3 {
    color: #C49A24;

    font-size: 28px;

    margin-bottom: 15px;
}


/* =====================================================
   TEXTO
===================================================== */

.nosotros-info-card p {
    color: #666;

    line-height: 1.7;

    margin: 0;
}


/* =====================================================
   CELULAR
===================================================== */

@media (max-width: 600px) {

    .nosotros-detalle {
        padding: 50px 20px;
    }

    .nosotros-info-card {
        padding: 25px 20px;

        flex-direction: column;

        text-align: center;

        align-items: center;
    }

    .nosotros-info-card h3 {
        font-size: 25px;
    }

}



/* =====================================================
   CONTACTO
===================================================== */

.contacto {
    width: 100%;

    padding: 80px 20px;

    background: #222;

    color: white;

    text-align: center;
}

.contacto h2 {
    font-size: 35px;

    margin-bottom: 15px;
}

.contacto p {
    color: #ddd;

    margin-bottom: 30px;

    font-size: 17px;
}


/* =====================================================
   CHATBOT
===================================================== */

.chatbot {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 2000;
}

.chatbot-button {
    width: 60px;
    height: 60px;

    border: none;

    border-radius: 50%;

    background: var(--dorado);

    color: white;

    font-size: 27px;

    cursor: pointer;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, 0.25);

    transition: 0.3s ease;
}

.chatbot-button:hover {
    background: var(--dorado-oscuro);

    transform: scale(1.08);
}

.chatbot-window {
    position: absolute;

    right: 0;
    bottom: 75px;

    width: 340px;

    max-width: calc(100vw - 40px);

    background: white;

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.25);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(15px)
        scale(0.96);

    transition: 0.3s ease;
}

.chatbot-window.chatbot-abierto {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0)
        scale(1);
}

.chatbot-header {
    background: var(--dorado);

    color: white;

    padding: 16px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.chatbot-header strong {
    display: block;

    font-size: 15px;
}

.chatbot-header small {
    display: block;

    margin-top: 4px;

    opacity: 0.9;
}

.chatbot-header button {
    border: none;

    background: transparent;

    color: white;

    font-size: 25px;

    cursor: pointer;
}

.chatbot-messages {
    max-height: 280px;

    overflow-y: auto;

    padding: 15px;

    background: #f7f7f7;
}

.bot-message,
.user-message {
    max-width: 85%;

    padding: 10px 13px;

    border-radius: 14px;

    margin-bottom: 10px;

    line-height: 1.45;

    font-size: 14px;
}

.bot-message {
    background: white;

    color: #444;

    border:
        1px solid #eeeeee;
}

.user-message {
    margin-left: auto;

    background: var(--dorado);

    color: white;
}

.chatbot-options {
    padding: 12px;

    background: white;
}

.chatbot-options button {
    display: block;

    width: 100%;

    margin-top: 8px;

    padding: 10px;

    border: none;

    border-radius: 20px;

    background: #eeeeee;

    color: #333;

    cursor: pointer;

    transition: 0.3s ease;
}

.chatbot-options button:first-child {
    margin-top: 0;
}

.chatbot-options button:hover {
    background: var(--dorado);

    color: white;
}
/* =====================================================
   BOTONES DE ACCIÓN DEL CHATBOT
===================================================== */

.chatbot-acciones {
    display: flex;

    flex-direction: column;

    gap: 8px;

    padding: 10px 12px;

    background: white;
}


.chatbot-acciones button {
    width: 100%;

    padding: 10px 12px;

    border: none;

    border-radius: 20px;

    background: #eeeeee;

    color: #333;

    cursor: pointer;

    font-family: inherit;

    font-size: 13px;

    font-weight: bold;

    transition: 0.3s ease;
}


.chatbot-acciones button:hover {
    background: #C9A227;

    color: white;

    transform: translateY(-2px);
}

/* =====================================================
   FOOTER
===================================================== */

footer {
    width: 100%;

    background: #111;

    color: white;

    padding: 50px 6% 20px;
}

.footer-contenido {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1fr;

    gap: 40px;

    padding-bottom: 35px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.15);
}

.footer-logo img {
    width: 150px;

    height: 65px;

    object-fit: contain;

    background: white;

    border-radius: 8px;
}

.footer-logo p {
    color: #aaa;

    line-height: 1.6;

    margin-top: 15px;
}

.footer-enlaces h3,
.footer-contacto h3,
.footer-redes h3 {
    color: var(--dorado-claro);

    margin-bottom: 18px;
}

.footer-enlaces a {
    display: block;

    color: #ccc;

    text-decoration: none;

    margin-bottom: 10px;
}

.footer-enlaces a:hover {
    color: var(--dorado-claro);
}

.footer-contacto p {
    color: #ccc;

    margin-bottom: 10px;
}

.footer-redes .redes-sociales {
    justify-content: flex-start;
}

.footer-bottom {
    text-align: center;

    color: #aaa;

    padding-top: 25px;

    font-size: 14px;
}

.footer-bottom span {
    color: var(--dorado-claro);
}


/* =====================================================
   NUEVO CARRUSEL DE SERVICIOS
===================================================== */

.servicios {
    width: 100%;

    padding: 80px 4%;

    background: #ffffff;

    overflow: hidden;
}

.servicios .seccion-titulo {
    text-align: center;

    max-width: 850px;

    margin: 0 auto 40px;
}

.servicios .seccion-titulo p {
    color: #C9A227;

    font-size: 14px;

    font-weight: bold;

    letter-spacing: 2px;

    margin-bottom: 8px;
}

.servicios .seccion-titulo h2 {
    font-size: 38px;

    color: #222;

    margin-bottom: 12px;
}

.servicios .seccion-titulo span {
    color: #666;

    font-size: 17px;
}


/* =====================================================
   CONTENEDOR DEL CARRUSEL
===================================================== */

.servicios-carrusel {
    width: 100%;

    max-width: 1450px;

    margin: auto;

    display: flex;

    align-items: center;

    gap: 15px;

    position: relative;
}


/* =====================================================
   VENTANA DEL CARRUSEL
===================================================== */

.carrusel-ventana {
    width: 100%;

    overflow: hidden;

    padding: 15px 5px 25px;
}


/* =====================================================
   TRACK
===================================================== */

.carrusel-track {
    display: flex;

    gap: 25px;

    width: max-content;

    transform: translateX(0);

    transition: transform 0.7s ease;

    will-change: transform;
}


/* =====================================================
   TARJETAS DE SERVICIOS
===================================================== */

.servicio-card {
    width: 280px;

    flex: 0 0 280px;

    background: #ffffff;

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.12);

    cursor: pointer;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

    border: 1px solid #eeeeee;
}

.servicio-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.18);
}


/* =====================================================
   IMÁGENES SERVICIOS
===================================================== */

.servicio-card img {
    width: 100%;

    height: 190px;

    object-fit: cover;

    display: block;

    transition: transform 0.4s ease;
}

.servicio-card:hover img {
    transform: scale(1.05);
}


/* =====================================================
   CONTENIDO SERVICIOS
===================================================== */

.servicio-contenido {
    padding: 22px;
}

.servicio-contenido h3 {
    color: #C49A24;

    font-size: 22px;

    margin-bottom: 10px;
}

.servicio-contenido p {
    color: #666;

    font-size: 15px;

    line-height: 1.5;

    min-height: 68px;
}


/* =====================================================
   FLECHAS DEL CARRUSEL
===================================================== */

.carrusel-flecha {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    border: none;

    border-radius: 50%;

    background: #C9A227;

    color: white;

    font-size: 25px;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 5;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.carrusel-flecha:hover {
    background: #9d7815;

    transform: scale(1.08);

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.20);
}

.carrusel-flecha:active {
    transform: scale(0.95);
}


/* =====================================================
   INDICADORES DEL CARRUSEL
===================================================== */

.carrusel-indicadores {
    display: flex;

    justify-content: center;

    gap: 7px;

    margin-top: 10px;
}

.carrusel-indicador {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #d7d7d7;

    transition: 0.3s ease;
}

.carrusel-indicador.activo {
    width: 25px;

    border-radius: 10px;

    background: #C9A227;
}


/* =====================================================
   APARTADO TRÁMITES
===================================================== */

.tramites-seccion {
    display: none;

    width: 100%;

    min-height: 100vh;

    padding: 70px 5%;

    background: #f5f5f5;
}

.tramites-seccion.tramites-visible {
    display: block;
}

.tramites-contenido {
    width: 100%;

    max-width: 1100px;

    margin: auto;
}


/* =====================================================
   TÍTULO TRÁMITES
===================================================== */

.tramites-contenido .seccion-titulo {
    margin-bottom: 45px;
}


/* =====================================================
   BOTÓN VOLVER DE TRÁMITES
===================================================== */

.volver-tramites {
    border: none;

    background: #C9A227;

    color: white;

    padding: 11px 22px;

    border-radius: 25px;

    cursor: pointer;

    font-weight: bold;

    margin-bottom: 45px;

    transition: 0.3s ease;
}

.volver-tramites:hover {
    background: #9d7815;

    transform: translateX(-3px);
}


/* =====================================================
   TARJETAS DE TRÁMITES
===================================================== */

.tramites-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 30px;

    max-width: 850px;

    margin: auto;
}

.tramite-card {
    background: white;

    padding: 40px 30px;

    text-align: center;

    border-radius: 20px;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.12);

    transition: 0.3s ease;

    border: 1px solid #eeeeee;
}

.tramite-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.17);
}

.tramite-icono {
    font-size: 50px;

    margin-bottom: 15px;
}

.tramite-card h3 {
    color: #C49A24;

    font-size: 27px;

    margin-bottom: 15px;
}

.tramite-card p {
    color: #666;

    line-height: 1.6;

    margin-bottom: 25px;
}

.tramite-card button {
    border: none;

    background: #C9A227;

    color: white;

    padding: 12px 20px;

    border-radius: 25px;

    cursor: pointer;

    font-weight: bold;

    transition: 0.3s ease;
}

.tramite-card button:hover {
    background: #9d7815;

    transform: scale(1.03);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .header {
        padding-left: 25px;
        padding-right: 25px;
    }

    .menu {
        gap: 15px;
    }

    .destinos-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .visas-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .footer-contenido {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =====================================================
   TABLET PEQUEÑA
===================================================== */

@media (max-width: 900px) {

    .header {
        flex-wrap: wrap;

        justify-content: center;

        gap: 12px;

        padding-top: 15px;

        padding-bottom: 15px;
    }

    .logo-container {
        width: 100%;

        justify-content: center;
    }

    .menu {
        flex-wrap: wrap;

        justify-content: center;
    }

    .redes-sociales {
        justify-content: center;
    }

    .hero h1 {
        font-size: 42px;
    }

    .experiencias-grid {
        grid-template-columns:
            1fr;

        max-width: 550px;
    }

    .destinos-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .novedades-grid {
        grid-template-columns:
            1fr;

        max-width: 550px;
    }

    .nosotros-contenido {
        grid-template-columns:
            1fr;

        gap: 35px;
    }

    .nosotros-imagen img {
        height: 350px;
    }


    /* CARRUSEL */

    .servicios {
        padding:
            65px 20px;
    }

    .servicios .seccion-titulo h2 {
        font-size: 32px;
    }

    .servicios-carrusel {
        gap: 8px;
    }

    .carrusel-flecha {
        width: 42px;
        height: 42px;

        flex-basis: 42px;

        font-size: 21px;
    }

    .servicio-card {
        width: 270px;

        flex-basis: 270px;
    }


    /* TRÁMITES */

    .tramites-seccion {
        padding:
            60px 25px;
    }

}


/* =====================================================
   CELULAR
===================================================== */

@media (max-width: 600px) {

    .header {
        position: relative;

        padding: 15px;
    }

    .logo {
        width: 140px;

        height: 60px;
    }

    .menu {
        gap: 10px 15px;
    }

    .menu a {
        font-size: 13px;
    }

    .redes-sociales {
        gap: 7px;
    }

    .hero {
        min-height: 470px;

        padding: 35px 18px;
    }

    .hero-subtitulo {
        font-size: 12px;

        letter-spacing: 2px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-texto {
        font-size: 16px;
    }

    .seccion-titulo h2 {
        font-size: 30px;
    }

    .experiencias {
        padding: 60px 20px;
    }

    .destinos-titulo h2 {
        font-size: 32px;
    }

    .seccion-destinos {
        padding:
            50px 20px;
    }

    .destinos-grid {
        grid-template-columns:
            1fr;

        max-width: 450px;
    }

    .destino-card img {
        height: 220px;
    }

    .otros-destinos {
        padding: 28px 20px;
    }

    .otros-destinos h3 {
        font-size: 23px;
    }

    .visas {
        padding: 60px 20px;
    }

    .visas-grid {
        grid-template-columns:
            1fr;

        max-width: 450px;
    }

    .novedades {
        padding: 60px 20px;
    }

    .nosotros {
        padding: 60px 20px;
    }

    .nosotros-texto h2 {
        font-size: 32px;
    }

    .nosotros-imagen img {
        height: 280px;
    }

    .contacto {
        padding:
            60px 20px;
    }

    .contacto h2 {
        font-size: 28px;
    }


    /* CHATBOT */

    .chatbot {
        right: 15px;

        bottom: 15px;
    }

    .chatbot-window {
        right: 0;

        width: 320px;
    }


    /* FOOTER */

    .footer-contenido {
        grid-template-columns:
            1fr;

        text-align: center;
    }

    .footer-redes .redes-sociales {
        justify-content: center;
    }

    footer {
        padding:
            40px 20px 20px;
    }


    /* =================================================
       CARRUSEL EN CELULAR
    ================================================= */

    .servicios {
        padding:
            55px 10px;
    }

    .servicios .seccion-titulo h2 {
        font-size: 28px;
    }

    .servicios .seccion-titulo span {
        font-size: 15px;
    }

    .servicios-carrusel {
        gap: 5px;
    }

    .carrusel-flecha {
        width: 38px;
        height: 38px;

        flex-basis: 38px;

        font-size: 18px;
    }

    .carrusel-ventana {
        padding-left: 3px;

        padding-right: 3px;
    }

    .carrusel-track {
        gap: 15px;
    }

    .servicio-card {
        width: 250px;

        flex-basis: 250px;
    }

    .servicio-card img {
        height: 170px;
    }


    /* =================================================
       TRÁMITES EN CELULAR
    ================================================= */

    .tramites-seccion {
        padding:
            50px 20px;
    }

    .tramites-contenido .seccion-titulo h2 {
        font-size: 28px;
    }

    .tramites-contenido .seccion-titulo span {
        font-size: 15px;

        line-height: 1.5;

        display: block;
    }

    .volver-tramites {
        margin-bottom: 35px;

        padding: 10px 18px;

        font-size: 14px;
    }

    .tramites-grid {
        grid-template-columns:
            1fr;

        gap: 20px;

        max-width: 450px;
    }

    .tramite-card {
        padding:
            30px 20px;
    }

    .tramite-icono {
        font-size: 42px;
    }

    .tramite-card h3 {
        font-size: 24px;
    }

}


/* =====================================================
   CELULAR PEQUEÑO
===================================================== */

@media (max-width: 380px) {

    .menu {
        gap: 8px 12px;
    }

    .menu a {
        font-size: 12px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .chatbot-window {
        width: 290px;

        max-width:
            calc(100vw - 30px);
    }

    .servicio-card {
        width: 235px;

        flex-basis: 235px;
    }

    .tramite-card h3 {
        font-size: 22px;
    }

}

/* =====================================================
   PÁGINA QUIÉNES SOMOS
===================================================== */

.nosotros-detalle {
    width: 100%;
    min-height: 100vh;

    padding: 70px 5%;

    background: #f5f5f5;
}


.nosotros-detalle-contenido {
    width: 100%;
    max-width: 1000px;

    margin: auto;
}



/* =====================================================
   BOTÓN VOLVER
===================================================== */

.volver-nosotros {
    display: inline-block;

    border: none;

    background: #C9A227;

    color: white;

    padding: 11px 22px;

    border-radius: 25px;

    cursor: pointer;

    font-weight: bold;

    margin-bottom: 45px;

    text-decoration: none;

    transition: 0.3s ease;
}


.volver-nosotros:hover {
    background: #9d7815;

    transform: translateX(-3px);
}



/* =====================================================
   TÍTULO
===================================================== */

.nosotros-detalle .seccion-titulo {
    text-align: center;

    max-width: 850px;

    margin: 0 auto 45px;
}


.nosotros-detalle .seccion-titulo p {
    color: #C9A227;

    font-weight: bold;

    font-size: 14px;

    letter-spacing: 2px;

    margin-bottom: 8px;
}


.nosotros-detalle .seccion-titulo h2 {
    font-size: 40px;

    color: #222;

    margin-bottom: 12px;
}


.nosotros-detalle .seccion-titulo span {
    color: #666;

    font-size: 17px;

    line-height: 1.6;
}



/* =====================================================
   TARJETAS MISIÓN Y VISIÓN
===================================================== */

.nosotros-info-card {
    width: 100%;

    background: white;

    padding: 40px;

    margin-bottom: 30px;

    border-radius: 20px;

    display: flex;

    align-items: flex-start;

    gap: 25px;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.10);

    border: 1px solid #eeeeee;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.nosotros-info-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.16);
}



/* =====================================================
   ICONOS
===================================================== */

.nosotros-info-icono {
    width: 65px;
    height: 65px;

    flex: 0 0 65px;

    border-radius: 50%;

    background: #C9A227;

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 30px;

    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.15);
}



/* =====================================================
   TÍTULOS DE MISIÓN Y VISIÓN
===================================================== */

.nosotros-info-card h3 {
    color: #C49A24;

    font-size: 28px;

    margin: 0 0 15px;
}



/* =====================================================
   TEXTO
===================================================== */

.nosotros-info-card p {
    color: #666;

    font-size: 16px;

    line-height: 1.7;

    margin: 0;
}



/* =====================================================
   RESPONSIVE - TABLET
===================================================== */

@media (max-width: 900px) {

    .nosotros-detalle {
        padding: 60px 25px;
    }

    .nosotros-detalle .seccion-titulo h2 {
        font-size: 35px;
    }

    .nosotros-info-card {
        padding: 30px;
    }

}



/* =====================================================
   RESPONSIVE - CELULAR
===================================================== */

@media (max-width: 600px) {

    .nosotros-detalle {
        padding: 50px 20px;
    }


    .volver-nosotros {
        margin-bottom: 35px;

        font-size: 14px;
    }


    .nosotros-detalle .seccion-titulo {
        margin-bottom: 35px;
    }


    .nosotros-detalle .seccion-titulo h2 {
        font-size: 30px;
    }


    .nosotros-detalle .seccion-titulo span {
        font-size: 15px;
    }


    .nosotros-info-card {
        padding: 28px 20px;

        flex-direction: column;

        align-items: center;

        text-align: center;

        gap: 18px;
    }


    .nosotros-info-card h3 {
        font-size: 25px;
    }


    .nosotros-info-card p {
        font-size: 15px;

        line-height: 1.6;
    }

}



/* =====================================================
   CELULAR PEQUEÑO
===================================================== */

@media (max-width: 380px) {

    .nosotros-detalle {
        padding: 45px 15px;
    }


    .nosotros-detalle .seccion-titulo h2 {
        font-size: 27px;
    }


    .nosotros-info-card {
        padding: 25px 17px;
    }

}

/* =================================================
   PÁGINA MISIÓN Y VISIÓN
================================================= */

.pagina-nosotros {
    width: 100%;
    min-height: 100vh;

    padding: 80px 5%;

    background: #f5f5f5;
}


/* =================================================
   CONTENEDOR DE LAS DOS VENTANAS
================================================= */

.mision-vision-grid {
    width: 100%;
    max-width: 1000px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;
}


/* =================================================
   TARJETAS
================================================= */

.mision-vision-card {
    background: #ffffff;

    padding: 45px 35px;

    border-radius: 20px;

    text-align: center;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.12);

    border: 1px solid #eeeeee;

    transition: 0.3s ease;
}


.mision-vision-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.17);
}


/* =================================================
   ICONOS
================================================= */

.mision-vision-icono {
    font-size: 55px;

    margin-bottom: 20px;
}


/* =================================================
   TÍTULOS
================================================= */

.mision-vision-card h3 {
    color: #C49A24;

    font-size: 28px;

    margin-bottom: 18px;
}


/* =================================================
   TEXTO
================================================= */

.mision-vision-card p {
    color: #666;

    font-size: 16px;

    line-height: 1.7;

    margin: 0;
}


/* =================================================
   BOTÓN VOLVER
================================================= */

.volver-nosotros {
    text-align: center;

    margin-top: 50px;
}


/* =================================================
   CELULAR
================================================= */

@media (max-width: 700px) {

    .pagina-nosotros {
        padding: 60px 20px;
    }

    .mision-vision-grid {
        grid-template-columns: 1fr;
    }

    .mision-vision-card {
        padding: 35px 25px;
    }

}
/* =================================================
   ICONOS DEL CONTACTO
================================================= */

.footer-contacto p {
    margin-bottom: 12px;
}

.footer-contacto a {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #ccc;

    text-decoration: none;

    transition: 0.3s ease;
}

.footer-contacto a:hover {
    color: var(--dorado-claro);
}

.footer-contacto i {
    width: 20px;

    font-size: 18px;

    color: var(--dorado-claro);

    text-align: center;
}
/* =================================================
   PAGINA DEL CONCURSO
================================================= */

.pagina-concurso {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: #f8f7f3;
}


/* =================================================
   CONTENEDOR PRINCIPAL
================================================= */

.concurso-contenido {
    width: 100%;
    max-width: 700px;
    text-align: center;
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.10);
}


/* =================================================
   LOGO - ENCABEZADO
================================================= */

.concurso-logo {
    width: 180px;
    height: auto;
    display: block;
    margin: 0 auto 25px;
}


/* =================================================
   TITULO
================================================= */

.concurso-etiqueta {
    color: #c9a227;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 10px;
}


.concurso-contenido h1 {
    margin: 0 0 15px;
    font-size: 38px;
    color: #222;
}


.concurso-texto {
    font-size: 17px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}


/* =================================================
   QR
================================================= */

.concurso-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px auto;
    padding: 20px;
    width: fit-content;
    background: #ffffff;
    border: 2px solid #d4af37;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}


.concurso-qr img {
    width: 280px;
    max-width: 100%;
    height: auto;
    display: block;
}


/* =================================================
   INSTRUCCION
================================================= */

.concurso-instruccion {
    color: #555;
    font-size: 15px;
    line-height: 1.5;
    margin: 25px auto 30px;
    max-width: 450px;
}


/* =================================================
   BOTON VOLVER
================================================= */

.pagina-concurso .hero-button {
    display: inline-block;
    text-decoration: none;
    background: #c9a227;
    color: #ffffff;
    padding: 13px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s ease;
}


.pagina-concurso .hero-button:hover {
    background: #a98616;
    transform: translateY(-2px);
}


/* =================================================
   RESPONSIVE
================================================= */

@media (max-width: 600px) {

    .pagina-concurso {
        padding: 25px 15px;
    }


    .concurso-contenido {
        padding: 35px 20px;
    }


    .concurso-logo {
        width: 145px;
    }


    .concurso-contenido h1 {
        font-size: 30px;
    }


    .concurso-texto {
        font-size: 15px;
    }


    .concurso-qr {
        padding: 15px;
    }


    .concurso-qr img {
        width: 230px;
    }

}
