:root {
    --gold: var(--color-principal);
    --gold-dark: #b8911e;
    --bg: #ffffff;
    --text: #1a1a1a;
}

html,
body {
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 450px;
}

/* ===== SLIDER ===== */
.slider {
    position: relative;
    width: 100%;
    height: auto;
}

/* ===== SLIDES ===== */
.slide {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: auto;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.8s ease-in-out,
        visibility 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

/* ===== IMÁGENES ===== */
.slide img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;

    object-fit: contain;
    object-position: center;

    transform: translateY(-100px);

    /* Compensa el espacio que queda abajo */
    margin-bottom: -70px;
}

/* ===== CONTENIDO ===== */
.hero-content {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    z-index: 10;
    width: 90%;

    text-align: center;
}

/* ===== TABLET ===== */
@media (max-width: 991px) {

    .hero {
        min-height: 350px;
    }

    .slide img {
        width: 100%;
        height: auto;
    }

}

/* ===== CELULAR ===== */
@media (max-width: 600px) {

    .hero {
        min-height: 220px;
    }

    .slide img {
        width: 100%;
        height: auto;
    }

}

/* =========================================================
   FLECHAS DEL SLIDER — COLOR PRINCIPAL
   ========================================================= */

.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    /* Fondo principal */
    background: var(--color-principal);
    color: #ffffff;

    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;

    outline: none;

    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;

    cursor: pointer;
    z-index: 20;

    /* Sombra */
    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.25),
        0 8px 20px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

/* =========================================================
   HOVER
   ========================================================= */

.prev-btn:hover,
.next-btn:hover {
    background: var(--color-principal);
    color: #ffffff;

    box-shadow:
        0 6px 15px rgba(0, 0, 0, 0.30),
        0 10px 25px rgba(0, 0, 0, 0.20);

    transform: translateY(-50%) scale(1.08);
}

/* =========================================================
   POSICIÓN
   ========================================================= */

.prev-btn {
    left: 25px;
}

.next-btn {
    right: 25px;
}

/* =========================================================
   MOVIMIENTO
   ========================================================= */

.prev-btn:hover {
    transform: translateY(-50%) translateX(-5px) scale(1.08);
}

.next-btn:hover {
    transform: translateY(-50%) translateX(5px) scale(1.08);
}


/* =========================================================
   EFECTO AL PRESIONAR
   ========================================================= */

.prev-btn:active,
.next-btn:active {
    transform: translateY(-50%) scale(0.92);
}

/* =========================================================
   ACCESIBILIDAD
   ========================================================= */

.prev-btn:focus-visible,
.next-btn:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}

/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 780px) {

    .prev-btn,
    .next-btn {
        width: 38px;
        height: 38px;
        /* Color principal */
        background: var(--color-principal);
        /* Flecha */
        color: #ffffff;
        border: 2px solid rgba(255, 255, 255, 0.95);
        border-radius: 50%;
        font-size: 1.35rem;
        font-weight: 900;
        line-height: 1;
        /* Hace que destaquen sobre cualquier imagen */
        box-shadow:
            0 3px 8px rgba(0, 0, 0, 0.35),
            0 0 0 2px rgba(0, 0, 0, 0.10);
        opacity: 1;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    /* Hover/touch */
    .prev-btn:hover,
    .next-btn:hover {
        background: var(--color-principal);
        color: #ffffff;
        transform: translateY(-50%) scale(1.05);
    }

    /* Al tocar */
    .prev-btn:active,
    .next-btn:active {
        transform: translateY(-50%) scale(0.90);
    }
}

.container {
    width: 90%;
    margin: 0 auto;
    box-sizing: border-box;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 65vh;
    padding: 0 clamp(40px, 9vw, 110px);
    margin: 70px auto 0;
    gap: 3rem;
    flex-wrap: wrap;
    box-sizing: border-box;
    position: relative;
}

.about-title {
    width: 100%;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 0.5rem;
    position: relative;
    z-index: 2;
    top: -60px; /* SUBE EL TÍTULO */
}

.about-text {
    flex: 1;
    min-width: 280px;
    font-family: 'Poppins', sans-serif;
    margin-top: -330px; /* SUBE EL TEXTO */
}

.about-title span {
    color: var(--color-principal);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.5;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0.3rem 0 0.8rem;
}

.about-list li {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-img {
    flex: 1 1 400px;
    min-width: 280px;
    display: flex;
    justify-content: flex-end;
    position: relative;
    top: 0;
    z-index: 2;
}

.about-img img {
    max-height: 450px;
    max-width: 450px;
    width: 100%;
    height: auto;
    display: block;
    position: relative;

    /* SOLO ESTO MODIFICA EL JS */
    top: 0;

    opacity: 0;
    visibility: hidden;

    transition: opacity .35s ease;
}

.about-img.ready img {
    opacity: 1;
    visibility: visible;
}


/* =========================
   LOADING
========================= */

.about-loading {
    position: absolute;

    width: 50px;
    height: 50px;

    left: 50%;
    top: 50%;

    margin-left: -25px;
    margin-top: -25px;

    border: 5px solid rgba(0, 0, 0, .12);
    border-top-color: var(--color-principal);

    border-radius: 50%;

    animation: arommaLoading .8s linear infinite;

    z-index: 999;
}

.about-img.ready .about-loading {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@keyframes arommaLoading {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


.btn-secondary-tours:hover {
    background: var(--color-principal);
    transform: translateY(-3px);
}

/* Contenedores de botones para centrar */
.tours-actions,
.gallery-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 35px;
    width: 100%;
}

/* Botón formato píldora en #efb81b */
.about-btn,
.btn-primary-tours,
.btn-secondary-tours,
.btn-gallery-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 34px;
    font-weight: 700;
    text-decoration: none;
    color: #222222;
    background-color: var(--color-principal);
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    line-height: 1.2;
}

.about-btn:hover,
.btn-primary-tours:hover,
.btn-gallery-primary:hover {
    background-color: #d6a20f;
    color: #222222;
    box-shadow: 0 8px 20px rgba(239, 184, 27, 0.4);
    transform: translateY(-2px);
}

/* Adaptación responsiva para celulares */
@media (max-width: 576px) {
    .btn-gallery-primary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

/* Adaptación responsive */
@media (max-width: 576px) {
    .tours-actions,
    .gallery-actions {
        flex-direction: column;
        gap: 12px;
    }

    .tours-actions a,
    .gallery-actions a {
        width: fit-content;
        text-align: center;
    }
}

#reserva-tour {
    scroll-margin-top: 100px; 
}

.gallery-section {
    padding: 5rem 2rem;
}

.gallery-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
}

.gallery-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.gallery-right {
    flex: 1;
}

.gallery-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

/* Contenedor alineado al centro */
.gallery-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    font-family: 'Poppins', sans-serif;
}

.section-title {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.tours-section {
    padding: 3rem clamp(32px, calc(115px - 5vw), 65px);
    margin-top: -10px;
    box-sizing: border-box;
}

.tours-cards {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(20px, 2vw, 40px);
    justify-content: center;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
}
.tour-card {
    flex: 1 1 320px;
    width: 100%;
    max-width: none;
    aspect-ratio: 3 / 4;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.tour-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tour-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
    transition: background 0.4s ease, justify-content 0.4s ease;

    /* Oculto por defecto */
    opacity: 0;
    visibility: hidden;
}

.tour-info span {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.tour-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0.3rem 0;
}

.tour-info .duration {
    font-size: 0.9rem;
    margin: 0.2rem 0;
}

.tour-info .price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0.3rem;
}

.tour-info .price .desde {
    font-size: 0.9rem;
    font-weight: 400;
    margin-right: 0.3rem;
}

.tour-card:hover .tour-info {
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;

    /* Muestra el contenido al pasar el cursor */
    opacity: 1;
    visibility: visible;
}

.tours-cards .tour-card {
    flex: 1 1 320px;
}

/* Cuando hay 1 sola tarjeta */
.tours-cards:has(.tour-card:only-child) .tour-card {
    flex: 0 0 320px;
}

/* Cuando hay exactamente 2 tarjetas */
.tours-cards:has(.tour-card:nth-child(2):last-child) .tour-card {
    flex: 0 0 320px;
}

.section-title {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.section-title .underline {
    position: relative;
    display: inline-block;
}

.section-title .underline::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -5px;
    width: 100%;
    height: 3px;
    background-color: #333;
}

.about-text {
    flex: 1 1 500px;

}

.about-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.about-title span {
    color: var(--color-principal);
}

/* LÍNEA DEBAJO DEL TÍTULO */
.about-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 110px;
    height: 4px;
    background: var(--color-principal);
    border-radius: 10px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #444;
}

.about-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--color-principal);
    color: #222;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-btn:hover {
    background: var(--color-principal);
    transform: translateY(-3px);
}



.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}





.gallery-section {
    padding: 3rem clamp(32px, calc(115px - 5vw), 65px);
    background: linear-gradient(135deg, #ffffff, #ffffff);
}

.gallery-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.gallery-title span {
    color: var(--color-principal);
}

.gallery-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--color-principal);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.gallery-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    max-width: 100%;
    margin: 0 auto;
}

.gallery-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 1;
}

.gallery-left img,
.gallery-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-right {
    flex: 1;
    display: flex;
}

.gallery-right img {
    border-radius: 15px;
}

.gallery-left img:hover,
.gallery-right img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}




.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
    will-change: opacity, transform;
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

/* Contenedor para cada imagen */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

/* Imagen con zoom suave */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 1.2rem;
    color: #fff;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h1 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-principal);
    margin-bottom: 0.3rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

/* Botón reservar */
.reserve-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-principal);
    color: #333;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    font-size: 0.9rem;
}

.reserve-btn:hover {
    background: var(--color-principal);
    transform: translateY(-2px);
}

.brands-section {
    padding: 5rem 2rem;
    text-align: center;
    margin-top: 20px;
}

.brands-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.brands-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 100px;
    height: 4px;
    background: var(--color-principal);
    border-radius: 2px;
}

.brands-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5rem;
}

.brand-item {
    position: relative;
    width: 180px; /* Tamaño fijo para mantener consistencia */
    height: 120px; /* Altura uniforme para equilibrar logos verticales y horizontales */
    display: flex;
    justify-content: center; /* Centra la imagen horizontalmente */
    align-items: center;     /* Centra la imagen verticalmente */
    cursor: pointer;
    overflow: hidden;
}

.brand-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.brand-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    padding: 0.5rem;
    transform: translateY(20px);
}



.brand-item:hover .brand-overlay,
.brand-item:active .brand-overlay {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .brands-logos {
        gap: 2rem;
    }

    .brand-item {
        flex: 1 1 120px;
        max-width: 140px;
    }

    .brands-title {
        font-size: 2.5rem;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}


.promo-section {
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
}

.promo-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    display: inline-block;
}

.promo-title span {
    color: var(--color-principal);
}

.promo-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 100px;
    height: 4px;
    background: var(--color-principal);
    border-radius: 2px;
}

.promo-container {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    max-width: 1200px;
    width: 100%;
    justify-content: center;
}

.promo-person {
    flex: 1;
    max-width: 550px;
    display: flex;
    justify-content: flex-start;
    position: relative;
    left: -100px;
    top: -100px;
    z-index: 1;
}


.promo-card {
    background: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    padding: 2rem 1.5rem;
    width: 450px;
    transition: all 0.4s ease;
    border: 1px solid #ddd;
}


/* Imagen */
.promo-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    border-bottom: 1px solid #ccc;
    transition: transform 0.4s ease;
}

.promo-card:hover img {
    transform: scale(1.03);
}

/* Tarjeta hover */
.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

/* Información */
.promo-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin: 1rem 0 0.5rem;
}

.promo-card p {
    font-size: 1rem;
    color: #666;
    margin: 0.5rem 0;
    line-height: 1.5;
    font-weight: 500;
}

/* Footer: precio a la derecha y botón a la izquierda */
.promo-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.5rem;
}

/* Precio */
.promo-card .promo-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    text-align: right;
}

/* Botón */
.promo-card .promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--color-principal);
    color: #333;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    border: 1px solid #ccc;
}

.promo-card .promo-btn:hover {
    background: var(--color-principal);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
    .promo-card {
        width: 90%;
    }
}



.seccion-reserva {
    padding: 3rem clamp(110px, calc(235px - 9vw), 160px);
    background: #ffffff;
}

.titulo-form {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}


.contenedor-reserva {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
    margin: auto;
    align-items: stretch;
}


.mapa {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}



.formulario-glass {
    background: rgba(255, 255, 255, 0.2);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);

}


.grid-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}




.form-group {
    position: relative;
    display: flex;
    align-items: center;
}


.input-icon i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #666;
    pointer-events: none;
}


.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 12px 14px 40px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    background: #f9f9f9;
    transition: border 0.3s, box-shadow 0.3s;
}


.form-group label {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #666;
    pointer-events: none;
    transition: 0.3s ease;
}


.form-group input:focus,
.form-group select:focus,
.form-group input:not(:placeholder-shown),
.form-group select:valid {
    border: 1px solid var(--color-principal);
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.5);
}


.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group select:focus+label,
.form-group select:valid+label {
    top: -6px;
    left: 35px;
    font-size: 12px;
    color: var(--color-principal);
    background: #fff;
    padding: 0 5px;
    border-radius: 4px;
}

.btn-enviar-dark {
    margin-top: 20px;
    background: var(--color-principal);

    color: #222222;

    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);


    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    color: #111;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    float: left;
}

.btn-enviar-dark:hover {
    background: var(--color-principal);
}

.contacto-extra {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 20px;
    margin: 40px auto 20px auto;
    width: 100%;
    padding: 0 0;
}

.contacto-extra .izquierda h2 {
    font-size: 1.6rem;
    margin-bottom: 6px;
    color: var(--color-principal);
}

.contacto-extra .izquierda p {
    color: #555;
    font-size: 14px;
}

.contacto-extra .centro {
    text-align: center;
}


.contacto-extra .frase-contacto {
    font-style: italic;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.4;
    color: #222;
    text-align: center;
    margin: 0 auto;
}


.contacto-extra .derecha img {
    max-width: 70px;
    display: block;
    margin-left: auto;
}

.info-contacto {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 3rem clamp(110px, calc(235px - 9vw), 160px);
    gap: 25px;
    margin: 0;
    width: 100%;
}

.info-card {
    background: #fff;
    /* blanco limpio */
    border: 2px solid var(--color-principal);
    /* solo borde dorado */
    border-radius: 12px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.info-card i {
    font-size: 1.8rem;
    color: var(--color-principal);
}

.info-card p {
    margin: 0;
    line-height: 1.4;
    font-size: 1.05rem;
    color: #222;
}

.info-card strong {
    display: inline-block;
    font-size: 1.1rem;
    margin-bottom: 2px;
    color: #111;
}

.gallery-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.gallery-link:hover {
    color: inherit;
}


.form-group.active label{
    top:-6px;
    left:35px;
    font-size:12px;
    color:var(--color-principal);
    background:#fff;
    padding:0 5px;
}

.brand-overlay{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    padding:15px;
}

.brand-overlay h4{
    margin:0 0 6px;
    font-size:1rem;
    font-weight:600;
    color:#fff;
}

.brand-overlay p{
    margin:0;
    font-size:.82rem;
    line-height:1.4;
    color:rgba(255,255,255,.85);
}

/*=========================
        RESPONSIVE RESERVA
=========================*/


/* =========================================================
   LAPTOP / TABLET GRANDE
   ========================================================= */

@media (max-width: 1100px) {

    .seccion-reserva {
        padding: 3rem 60px;
    }

    .info-contacto {
        padding: 3rem 60px;
        grid-template-columns: repeat(2, 1fr);
    }

    .contacto-extra {
        padding: 0 20px;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .seccion-reserva {
        padding: 2.5rem 35px;
    }

    .titulo-form {
        font-size: 2.5rem;
    }

    .contenedor-reserva {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .mapa {
        min-height: 350px;
        width: 100%;
    }

    .formulario-glass {
        padding: 25px;
    }

    .grid-form {
        grid-template-columns: 1fr;
    }


    /* =====================================================
       CONTACTO EXTRA
       ===================================================== */

    .contacto-extra {
        display: grid;
        grid-template-columns: 1fr 1fr;

        grid-template-areas:
            "centro centro"
            "izquierda derecha";

        gap: 25px;
        text-align: center;
    }

    .contacto-extra .centro {
        grid-area: centro;
    }

    .contacto-extra .izquierda {
        grid-area: izquierda;
    }

    .contacto-extra .derecha {
        grid-area: derecha;
    }

    .contacto-extra .derecha img {
        display: block;
        margin: auto;
    }

    .contacto-extra .frase-contacto {
        font-size: 1.3rem;
    }


    /* =====================================================
       INFORMACIÓN CONTACTO
       ===================================================== */

    .info-contacto {
        grid-template-columns: 1fr 1fr;
        padding: 2rem 35px;
    }


    /* =====================================================
       BOTÓN RESERVA
       CENTRADO - NO OCUPA TODO EL ANCHO
       ===================================================== */

    .btn-enviar-dark {
        display: flex !important;

        width: fit-content !important;
        max-width: fit-content !important;
        min-width: 0 !important;

        margin: 20px auto 0 !important;

        padding: 12px 25px;

        float: none !important;

        align-items: center;
        justify-content: center;

        white-space: nowrap;
    }

}


/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 600px) {

    .seccion-reserva {
        padding: 2rem 15px;
    }


    /* =====================================================
       TÍTULO
       ===================================================== */

    .titulo-form {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }


    /* =====================================================
       CONTENEDOR
       ===================================================== */

    .contenedor-reserva {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
    }


    /* =====================================================
       MAPA
       ===================================================== */

    .mapa {
        width: 100%;
        min-height: 300px;
    }


    /* =====================================================
       FORMULARIO
       ===================================================== */

    .formulario-glass {
        width: 100%;
        padding: 18px;
        border-radius: 12px;
    }

    .grid-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }


    /* =====================================================
       INPUTS
       ===================================================== */

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 13px 10px 13px 38px;
        font-size: 13px;
    }

    .form-group label {
        font-size: 13px;
    }


    /* =====================================================
       BOTÓN RESERVA
       CENTRADO
       NO 100%
       ===================================================== */

    .btn-enviar-dark {
        display: flex !important;

        width: fit-content !important;
        max-width: fit-content !important;
        min-width: 0 !important;

        margin: 20px auto 0 !important;

        padding: 12px 25px;

        float: none !important;

        align-items: center;
        justify-content: center;

        white-space: nowrap;

        font-size: 14px;
    }


    /* =====================================================
       CONTACTO EXTRA
       ===================================================== */

    .contacto-extra {
        display: grid;

        grid-template-columns: 1fr;

        grid-template-areas:
            "centro"
            "izquierda"
            "derecha";

        gap: 20px;

        margin: 30px auto 15px;

        text-align: center;
    }

    .contacto-extra .centro {
        grid-area: centro;
    }

    .contacto-extra .izquierda {
        grid-area: izquierda;
    }

    .contacto-extra .derecha {
        grid-area: derecha;
    }


    /* TÍTULO CONTACTO */

    .contacto-extra .izquierda h2 {
        font-size: 1.3rem;
    }


    /* FRASE */

    .contacto-extra .frase-contacto {
        font-size: 1.1rem;
    }


    /* IMAGEN */

    .contacto-extra .derecha img {
        display: block;
        max-width: 70px;
        margin: auto;
    }


    /* =====================================================
       INFORMACIÓN CONTACTO
       ===================================================== */

    .info-contacto {
        grid-template-columns: 1fr;

        padding: 2rem 15px;

        gap: 15px;
    }

    .info-card {
        width: 100%;
        padding: 15px;
        font-size: .95rem;
    }

    .info-card i {
        font-size: 1.5rem;
    }

    .info-card p {
        font-size: .9rem;
    }


    /* =====================================================
       BRAND OVERLAY
       ===================================================== */

    .brand-overlay h4 {
        font-size: .9rem;
    }

    .brand-overlay p {
        font-size: .75rem;
    }

}


/* =========================================================
   CELULAR PEQUEÑO
   ========================================================= */

@media (max-width: 380px) {

    .seccion-reserva {
        padding: 1.5rem 10px;
    }

    .formulario-glass {
        padding: 15px;
    }


    /* =====================================================
       INFORMACIÓN
       ===================================================== */

    .info-card {
        flex-direction: column;
        text-align: center;
    }


    /* =====================================================
       FRASE CONTACTO
       ===================================================== */

    .contacto-extra .frase-contacto {
        font-size: 1rem;
    }


    /* =====================================================
       BOTÓN
       CENTRADO Y PEQUEÑO
       ===================================================== */

    .btn-enviar-dark {
        display: flex !important;

        width: fit-content !important;
        max-width: fit-content !important;
        min-width: 0 !important;

        margin: 20px auto 0 !important;

        padding: 11px 22px;

        float: none !important;

        align-items: center;
        justify-content: center;

        font-size: 13px;

        white-space: nowrap;
    }

}



html.swal2-shown,
body.swal2-shown{
    overflow: hidden !important;
    height: 100% !important;
}

.swal2-html-container{
    margin:0 !important;
    padding:0 !important;
}

.swal2-popup{
    padding:0 !important;
    overflow:hidden;
}

.swal2-close{
    color:#000 !important;
    font-size:30px !important;
    z-index:10;
}



.tour-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 220px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: #eeeeee;
    color: #999;
}

.tour-img-placeholder i {
    font-size: 4rem;
    margin-bottom: 10px;
    opacity: 0.6;
}

.tour-img-placeholder span {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}


.popup-swal-profesional {
    position: relative !important;

    padding: 0 !important;

    background: #ffffff !important;

    border-radius: 18px !important;

    overflow: visible !important;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.30) !important;
}


/* ================================
   CONTENEDOR DE LA IMAGEN
================================ */

.popup-imagen-container {
    width: 100%;
    overflow: hidden;

    border-radius: 18px;

    background: #ffffff;
}


/* ================================
   IMAGEN
================================ */

.popup-imagen {
    display: block;

    width: 100%;
    height: auto;

    max-height: 80vh;

    object-fit: contain;

    border-radius: 18px;
}


/* ================================
   BOTÓN X
================================ */

.popup-close {
    position: absolute !important;

    top: -18px !important;
    right: -18px !important;

    width: 42px !important;
    height: 42px !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: #ffffff !important;

    color: #333333 !important;

    border-radius: 50% !important;

    font-size: 24px !important;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.25) !important;

    z-index: 9999 !important;

    transition: all 0.25s ease !important;
}

.popup-close:hover {
    background: var(--color-principal) !important;
    color: #ffffff !important;

    transform: rotate(90deg) !important;
}


/* ================================
   SIN IMAGEN
================================ */

.popup-sin-imagen {
    min-height: 250px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 12px;

    color: #999999;
}

.popup-sin-imagen i {
    font-size: 60px;
}

.popup-sin-imagen span {
    font-size: 15px;
    font-weight: 600;
}

/* =========================================================
   TABLETS
   769px - 1024px
   ========================================================= */

@media (min-width: 769px) and (max-width: 1024px) {

    .hero {
        min-height: 360px;
    }

    .slider {
        width: 100%;
    }

    .slide img {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: contain;
        object-position: center;

        transform: translateY(-50px);
        margin-bottom: -35px;
    }

    .hero-content {
        width: 88%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}


/* =========================================================
   CELULARES
   Hasta 768px
   ========================================================= */

@media (max-width: 768px) {

    .hero {
        min-height: 280px;
    }

    .slider {
        width: 100%;
    }

    .slide {
        width: 100%;
    }

    .slide img {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: contain;
        object-position: center;

        transform: translateY(-25px);
        margin-bottom: -15px;
    }

    .hero-content {
        width: 92%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}


/* =========================================================
   CELULARES PEQUEÑOS
   Hasta 480px
   ========================================================= */

@media (max-width: 480px) {

    .hero {
        min-height: 230px;
    }

    .slide img {
        transform: translateY(-15px);
        margin-bottom: -5px;
    }

    .hero-content {
        width: 94%;
    }
}


/* =========================================================
   CELULARES MUY PEQUEÑOS
   Hasta 380px
   ========================================================= */

@media (max-width: 380px) {

    .hero {
        min-height: 210px;
    }

    .slide img {
        transform: translateY(-10px);
        margin-bottom: 0;
    }

    .hero-content {
        width: 95%;
    }
}





/* =========================================================
   AVENTURAS AROMMA - RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

    .about-container {
        width: 90%;
        height: auto;
        min-height: 0;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;

        padding: 40px 0 50px;
        margin: 50px auto 0;
        gap: 25px;

        position: relative;
        box-sizing: border-box;
    }


    /* =====================================================
       IMAGEN OCULTA EN TABLET
       ===================================================== */

    .about-img {
        display: none !important;
    }


    /* =====================================================
       TÍTULO
       ===================================================== */

    .about-title {
        
        font-size: 2.5rem;
        margin-bottom:20px;
  
    }


    /* =====================================================
       CONTENIDO
       ===================================================== */

    .about-text {
        width: 100%;
        max-width: 100%;
        min-width: 0;

        flex: none;

        margin-top: 0;

        display: flex;
        flex-direction: column;
        align-items: center;

        box-sizing: border-box;
    }


    /* =====================================================
       PÁRRAFO
       ===================================================== */

    .about-text p {
        width: 100%;
        max-width: 100%;

        font-size: 1.1rem;
        line-height: 1.5;

        text-align: justify;

        margin: 0 0 0.8rem;

        overflow-wrap: break-word;
        word-wrap: break-word;
        hyphens: auto;

        box-sizing: border-box;
    }


    /* =====================================================
       LISTA
       ===================================================== */

    .about-list {
        width: 100%;
        max-width: 100%;

        margin: 0.3rem 0 0.8rem;
        padding: 0;

        box-sizing: border-box;
    }

    .about-list li {
        width: 100%;

        font-size: 1rem;

        margin-bottom: 0.3rem;
    }


    /* =====================================================
       BOTÓN CENTRADO
       ===================================================== */

    .about-btn {
        align-self: center;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        margin-left: auto;
        margin-right: auto;

        text-align: center;
    }

        .about-title span {
        color: var(--color-principal);
    }

    /* LÍNEA DEBAJO DEL TÍTULO */
    .about-title::after {
        content: "";

        position: absolute;

        left: 50%;
        bottom: -10px;

        transform: translateX(-50%);

        width: 70px;
        height: 4px;

        background: var(--color-principal);

        border-radius: 10px;
    }

}


/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 600px) {

    .about-container {
        width: 92%;

        height: auto;
        min-height: 0;

        padding: 35px 0 45px;

        margin: 35px auto 0;

        gap: 20px;

        position: relative;
        box-sizing: border-box;
    }


    /* =====================================================
       IMAGEN OCULTA EN CELULAR
       ===================================================== */

    .about-img {
        display: none !important;
    }


    /* =====================================================
       TÍTULO
       ===================================================== */

    .about-title {
        width: 100%;

        /* SE MANTIENE EN 3rem */
        font-size: 2.5rem;

        line-height: 1.2;

        text-align: center;

        top: 0;

        margin: 0 0 10px;

        position: relative;
    }


    /* =====================================================
       TEXTO
       ===================================================== */

    .about-text {
        width: 100%;
        max-width: 100%;
        min-width: 0;

        margin-top: 0;

        flex: none;

        display: flex;
        flex-direction: column;
        align-items: center;

        box-sizing: border-box;
    }


    /* =====================================================
       PÁRRAFO
       ===================================================== */

    .about-text p {
        width: 100%;
        max-width: 100%;

        /* SE MANTIENE EN 1.1rem */
        font-size: 1.1rem;

        line-height: 1.5;

        text-align: justify;

        margin: 0 0 0.8rem;

        overflow-wrap: break-word;
        word-wrap: break-word;
        hyphens: auto;

        box-sizing: border-box;
    }


    /* =====================================================
       LISTA
       ===================================================== */

    .about-list {
        width: 100%;
        max-width: 100%;

        margin: 0.3rem 0 0.8rem;
        padding: 0;
    }

    .about-list li {
        width: 100%;

        font-size: 1rem;

        margin-bottom: 0.3rem;
    }


    /* =====================================================
       BOTÓN CENTRADO
       ===================================================== */

    .about-btn {
        align-self: center;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        margin-left: auto;
        margin-right: auto;

        text-align: center;
    }

        .about-title span {
        color: var(--color-principal);
    }

    /* LÍNEA DEBAJO DEL TÍTULO */
    .about-title::after {
        content: "";

        position: absolute;

        left: 50%;
        bottom: -10px;

        transform: translateX(-50%);

        width: 70px;
        height: 4px;

        background: var(--color-principal);

        border-radius: 10px;
    }
}


/* =========================================================
   CELULAR PEQUEÑO
   ========================================================= */

@media (max-width: 400px) {

    .about-container {
        width: 92%;

        padding: 30px 0 40px;

        margin: 30px auto 0;

        gap: 18px;
    }


    .about-title {
        /* SE MANTIENE EN 3rem */
         
          font-size: 2.5rem;
        margin-bottom:20px;
   
    }


    .about-text p {
        /* SE MANTIENE EN 1.1rem */
        font-size: 1.1rem;

        line-height: 1.5;
    }


    .about-list li {
        font-size: 1rem;
    }


    .about-btn {
        align-self: center;

        margin-left: auto;
        margin-right: auto;
    }

        .about-title span {
        color: var(--color-principal);
    }

    /* LÍNEA DEBAJO DEL TÍTULO */
    .about-title::after {
        content: "";

        position: absolute;

        left: 50%;
        bottom: -10px;

        transform: translateX(-50%);

        width: 70px;
        height: 4px;

        background: var(--color-principal);

        border-radius: 10px;
    }
}


@media (max-width: 600px) {

    .contacto-extra {
        display: grid;

        grid-template-columns: 1fr 1fr;

        grid-template-areas:
            "centro centro"
            "izquierda derecha";

        align-items: center;
        gap: 20px;

        width: 100%;
        margin: 30px auto 15px;

        text-align: center;
    }

    /* FRASE ARRIBA, OCUPA TODA LA FILA */
    .contacto-extra .centro {
        grid-area: centro;
        width: 100%;
    }

    .contacto-extra .frase-contacto {
        font-size: 1.1rem;
        line-height: 1.4;
        margin: 0;
        white-space: nowrap;
        text-align: center;
    }

    /* TEXTO ABAJO A LA IZQUIERDA */
    .contacto-extra .izquierda {
        grid-area: izquierda;
        text-align: center;
    }

    .contacto-extra .izquierda h2 {
        font-size: 1.1rem;
        margin: 0;
    }

    /* IMAGEN ABAJO A LA DERECHA */
    .contacto-extra .derecha {
        grid-area: derecha;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .contacto-extra .derecha img {
        display: block;
        width: 65px;
        max-width: 65px;
        height: auto;
        margin: 0 auto;
    }
}

/* =========================================
   TABLET + CELULAR
   INFORMACIÓN SIEMPRE VISIBLE
========================================= */
/* =========================================
   TABLET + CELULAR
   MISMO TAMAÑO PARA LAS 3 IMÁGENES
========================================= */

@media (max-width: 1024px) {

    .gallery-container {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    .gallery-left,
    .gallery-right {
        width: 100%;
    }

    .gallery-link {
        display: block;
        width: 100%;
    }

    .gallery-item {
        position: relative;
        width: 100%;
        height: 400px;
        overflow: hidden;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center center;
    }

    /* Información visible */
    .gallery-overlay {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        bottom: 0 !important;
        width: 100%;
    }

    .gallery-overlay h1 {
        font-size: 1.4rem;
    }
}


/* =========================================
   CELULAR
========================================= */

@media (max-width: 600px) {

    .gallery-container {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .gallery-left,
    .gallery-right {
        width: 100%;
    }

    .gallery-link {
        display: block;
        width: 100%;
    }

    .gallery-item {
        position: relative;
        width: 100%;
        height: 320px;
        overflow: hidden;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center center;
    }

    /* Información visible */
    .gallery-overlay {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        bottom: 0 !important;
        width: 100%;
    }

    .gallery-overlay h1 {
        font-size: 1.15rem;
    }
}

/* =========================================================
   SELECT2 - MISMO ESTILO QUE LOS INPUTS
   ========================================================= */

.form-group .select2-container {
    width: 100% !important;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.form-group .select2-container .select2-selection--single {
    width: 100%;
    height: 48px !important;
    padding: 0 12px 0 40px !important;

    background: #f9f9f9 !important;
    border: 1px solid #ccc !important;
    border-radius: 8px !important;

    box-sizing: border-box;
}


/* Texto seleccionado */

.form-group .select2-container
.select2-selection--single
.select2-selection__rendered {
    color: #222 !important;

    padding: 0 !important;
    margin: 0 !important;

    line-height: 46px !important;

    font-family: Arial, sans-serif;
    font-size: 14px;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* Placeholder */

.form-group .select2-container
.select2-selection--single
.select2-selection__placeholder {
    color: #666 !important;
}


/* Flecha */

.form-group .select2-container
.select2-selection--single
.select2-selection__arrow {
    height: 46px !important;
    right: 10px !important;
}


/* Cuando está enfocado */

.form-group .select2-container--focus
.select2-selection--single,

.form-group .select2-container--open
.select2-selection--single {
    border-color: var(--color-principal) !important;
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.5) !important;
}


/* =========================================================
   LISTA DESPLEGABLE
   ========================================================= */

.form-group .select2-dropdown {
    border: 1px solid #ccc !important;
    border-radius: 8px !important;
    overflow: hidden;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.form-group .select2-results__option {
    padding: 12px !important;
    color: #222 !important;
    background: #fff !important;
}

.form-group .select2-results__option--highlighted {
    background: var(--color-principal) !important;
    color: #222 !important;
}

.form-group .select2-results__option--selected {
    background: #f1f1f1 !important;
    color: #222 !important;
}

/* =========================================================
   TOAST RESERVA
   ========================================================= */

:root {
    --toast-radius: 12px;
    --toast-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
    --toast-warning-bg: #fff3cd;
    --toast-warning-color: #d39e00;
    --toast-success-bg: #e8f8ee;
    --toast-success-color: #25D366;
    --toast-whatsapp: #25D366;
    --toast-whatsapp-hover: #20bd5a;
}

.toast-reserva {
    position: fixed;
    top: 25px;
    right: 25px;

    width: 360px;
    max-width: calc(100vw - 30px);

    background: #fff;
    border: 1px solid #ddd;
    border-radius: var(--toast-radius);

    padding: 16px 18px;
    box-shadow: var(--toast-shadow);

    font-family: Arial, sans-serif;

    z-index: 999999;

    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.toast-reserva.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}


/* =========================================================
   CONTENIDO
   ========================================================= */

.toast-reserva-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}


/* =========================================================
   ICONO
   ========================================================= */

.toast-reserva-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
}

.toast-reserva.warning .toast-reserva-icon {
    background: var(--toast-warning-bg);
    color: var(--toast-warning-color);
}

.toast-reserva.success .toast-reserva-icon {
    background: var(--toast-success-bg);
    color: var(--toast-success-color);
}


/* =========================================================
   TEXTO
   ========================================================= */

.toast-reserva-info {
    flex: 1;
}

.toast-reserva-title {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 700;
    color: #222;
}

.toast-reserva-message {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    color: #666;
}


/* =========================================================
   CERRAR
   ========================================================= */

.toast-reserva-close {
    border: none;
    background: transparent;
    color: #999;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s ease;
}

.toast-reserva-close:hover {
    color: #222;
}


/* =========================================================
   BOTONES
   ========================================================= */

.toast-reserva-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 14px;
}

.toast-reserva-btn {
    border: none;
    border-radius: 7px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.toast-reserva-btn-cancel {
    background: #eee;
    color: #444;
}

.toast-reserva-btn-cancel:hover {
    background: #ddd;
}

.contact-col.derecha {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.icono-contacto {
    width: 64px;
    height: 64px;
    font-size: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-principal);
}

.toast-reserva-btn-whatsapp {
    background: var(--toast-whatsapp);
    color: #fff;
}

.toast-reserva-btn-whatsapp:hover {
    background: var(--toast-whatsapp-hover);
}


/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 600px) {
    .toast-reserva {
        top: 15px;
        right: 15px;
        left: 15px;
        width: auto;
    }
}


/* =========================================================
   SLIDER CELULAR OCULTO EN PC
   ========================================================= */

.slider-celu {
    display: none;
}


/* =========================================================
   CELULAR — Hasta 750px
   ========================================================= */

@media (max-width: 750px) {
    .slider-pc {
        display: none;
    }

    .slider-celu {
        display: block;
    }
}



@media (max-width: 750px) {

    .tours-section.animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

}


