/* Variables y reset */
:root {
    --primary-color: #FF5500;
    --secondary-color: #8B0000;
    --background-light: #FFF0E6;
    --background-orange: #E25822;
    --background-dark-orange: #C14A20;
    --background-blue: #87CEEB;
    --text-color: #333;
    --white: #fff;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --e-global-color-bc65eab: #ffeee6;
    /* Reemplaza este color por el que tú desees */
    --e-global-typography-primary-font-family: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    position: relative;
    /* Añade esto si el padre directo es body */

}

.container-nav {


    width: 110%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.admin-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: -1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

section {
    padding: 80px 0;
    position: relative;
}

/* Botones */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #ff6a00;
    transform: translateY(-2px);
}

.btn-light {
    background-color: var(--background-light);
    color: var(--text-color);
}

.btn-light:hover {
    background-color: #ffe0cc;
}

.btn-block {
    display: block;
    width: 100%;
    background-color: #ff5800 !important;
    color: #ffffff !important;
    height: 40px;
    font-size: 17px;
}







/* Navbar */
.navbar {
    background-image: url('../img/navfondo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Contenedor principal */
.navbar .container-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Logo */
.logo {
    margin-right: 30px;
    /* Espacio después del logo */
}

.logo img {
    height: 90px;
    transition: all 0.3s ease;
}

/* Contenedor del menú */
.navbar-collapse {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Menú principal */
.navbar-nav.me-auto {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0 8px;
    /* Espacio entre items */
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--text-color);
    position: relative;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

/* Menú de la derecha (login e idioma) */
.navbar-nav:not(.me-auto) {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Efectos hover y active */
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    width: calc(100% - 24px);
    height: 3px;
    background-color: var(--primary-color);
}

/* Botones */
.navbar-nav .btn {
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Botón hamburguesa */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Estilos para scroll */
.navbar.scrolled {
    background-color: var(--e-global-color-bc65eab);
    background-image: none;
    transition: .3s ease-in-out;
}

.navbar.scrolled .nav-link {
    color: var(--text-color);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--primary-color);
}

.navbar.scrolled .btn-light {
    background-color: rgba(255, 85, 0, 0.1);
    color: var(--primary-color);
}

.navbar.scrolled .btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Idioma */
.language {
    display: flex;
    align-items: center;
    gap: 5px;
}

.flag {
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: white;
        padding: 20px;
        margin-top: 15px;
        border-radius: 5px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-nav {
        width: 100%;
    }

    .nav-item {
        margin: 5px 0;
    }

    .navbar-nav:not(.me-auto) {
        flex-direction: column;
        width: 100%;
        margin-top: 15px;
    }

    .navbar-nav .btn {
        width: 100%;
        text-align: center;
    }

    .navbar.scrolled .navbar-collapse {
        background-color: var(--e-global-color-bc65eab);
    }
}



/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    max-height: 800px;
    overflow: hidden;
    color: white;
    padding-top: 0px !important;
    margin-bottom: 250px;
}

.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-bg-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-bg-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: relative;
    height: 100%;

}

.container-hero {
    display: flex;
    height: 100%;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-static-content {
    flex: 1;
    padding-right: 40px;
    z-index: 2;
}

.hero-static-content h1 {
    font-size: 3rem;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-static-content span {
    color: #4fc3f7;
    /* Color azul claro */
}

.hero-dynamic-content {
    flex: 1;
    position: relative;
    min-height: 300px;
}

.hero-text-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero-text-slide.active {
    opacity: 1;
}

.hero-text-slide h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #FF5500;
}

.hero-text-slide p {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.hero-text-slide span {
    color: #4fc3f7;
    /* Mismo color que el texto estático */
}

/* Mobile First Approach */
@media (max-width: 767px) {
    .hero {
        height: auto;
        min-height: 70vh;
        max-height: none;
        margin-bottom: 0px;
        padding: 20px 0;
    }

    .container-hero {
        flex-direction: column;
        padding: 0 15px;
        justify-content: flex-start;
        padding-top: 80px;
    }

    .hero-static-content {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }

    .hero-static-content h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-dynamic-content {
        width: 100%;
        min-height: 200px;
        margin-top: 20px;
    }

    .hero-text-slide {
        padding: 20px;
        text-align: center;
    }

    .hero-text-slide h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .hero-text-slide p {
        font-size: 1rem;
    }

    /* Optimización para pantallas muy pequeñas */
    @media (max-width: 375px) {
        .hero-static-content h1 {
            font-size: 1.7rem;
        }

        .hero-text-slide h2 {
            font-size: 1.3rem;
        }

        .hero-text-slide {
            padding: 15px;
        }
    }
}

/* Tablet responsive (768px - 992px) */
@media (min-width: 768px) and (max-width: 992px) {

    .container-hero {
        padding-top: 40px;
    }

    .hero-static-content h1 {
        font-size: 2.5rem;
    }

    .hero-dynamic-content {
        min-height: 250px;
    }
}





/* Tickets Section */
/* Tickets Section - Modificado */
.tickets {
    background-image: url('../img/ticketfondo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    z-index: 4;
    padding: 300px 0 150px;
    margin-top: -490px;
    overflow: hidden;
}

.tickets h2 {
    text-align: right;
    color: var(--accent-color);
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.tickets-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.slider-viewport {
    width: 100%;
    max-width: 1650px;
    /* Ajustado para 3 tickets + gaps */
    overflow: hidden;
    margin: 0 20px;
}

.tickets-container {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.ticket-card {
    background-image: url('../img/ticket-1-2.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 520px;
    min-width: 520px;
    /* Asegura que no se reduzca */
    height: 220px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fondo-1 .ticket-inner {
    background-image: url('../img/ticketfondos.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 20px 50px;
    width: 100%;
    height: 100%;
}

.fondo-2 .ticket-inner {
    background-image: url('../img/chaxa6.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 20px 50px;
    width: 100%;
    height: 100%;
}

.fondo-3 .ticket-inner {
    background-image: url('../img/tara.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 20px 50px;
    width: 100%;
    height: 100%;
}

.fondo-4 .ticket-inner {
    background-image: url('../img/chaxa_4.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 20px 50px;
    width: 100%;
    height: 100%;

}

.fondo-1 .ticket-inner h3,
.fondo-2 .ticket-inner h3,
.fondo-3 .ticket-inner h3,
.fondo-4 .ticket-inner h3,
.fondo-5 .ticket-inner h3,
.fondo-6 .ticket-inner h3,
.fondo-7 .ticket-inner h3,
.fondo-8 .ticket-inner h3 {
    color: #ff6a00 !important;
}

.fondo-5 .ticket-inner {
    background-image: url('../img/pujsa_2.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 20px 50px;
    width: 100%;
    height: 100%;
}

.fondo-6 .ticket-inner {
    background-image: url('../img/pujsa.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 20px 50px;
    width: 100%;
    height: 100%;
}

.fondo-7 .ticket-inner {
    background-image: url('../img/pujsa_2.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 20px 50px;
    width: 100%;
    height: 100%;
}

.fondo-8 .ticket-inner {
    background-image: url('../img/geyser2.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 20px 50px;
    width: 100%;
    height: 100%;
}

.ticket-image {
    width: 140px;
    height: 140px;
    margin-right: 20px;
    border: 3px solid white;
    overflow: hidden;
    flex-shrink: 0;
}

.ticket-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ticket-content {
    flex: 1;
    color: var(--white);
}

.ticket-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 500;
    color: #333;
    width: 75%;
}

.slider-arrow {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
}

.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--accent-color);
}

.btn-primary {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}



/* Responsive Mobile Styles - Vertical Layout */
@media (max-width: 768px) {
    .tickets {
        padding: 200px 0 80px;
        margin-top: -300px;
        background-position: right center;
    }

    .tickets h2 {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 25px;
        padding: 0 20px;
        margin-top: 28%;
    }

    .tickets-slider {
        display: block;
        padding: 0;
    }

    .slider-viewport {
        width: 100%;
        margin: 0;
        overflow: visible;
    }

    .fondo-8 .ticket-inner h3,
    .fondo-3 .ticket-inner h3,
    .fondo-4 .ticket-inner h3 {
        font-size: 10px;
    }

    .tickets-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
        transform: none !important;
        /* Elimina cualquier transformación del slider */
    }

    .ticket-card {
        width: 100%;
        min-width: 100%;
        height: 160px;
        min-height: 160px;
        background-size: 100% 100%;
        margin: 0 auto 15px;
    }

    .ticket-inner {
        flex-direction: row;
        padding: 15px 20px;
        background-size: cover;
        height: 100%;
        min-height: 160px;
        align-items: center;
    }

    .ticket-image {
        width: 100px;
        height: 100px;
        min-width: 100px;
        margin-right: 15px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .ticket-content {
        text-align: left;
        padding-right: 10px;
        flex: 1;
        overflow: hidden;
    }

    .ticket-content h3 {
        width: 100%;
        font-size: 0.95rem;
        margin-bottom: 10px;
        color: #333;
        line-height: 1.3;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .btn-primary {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    /* Ocultar elementos de navegación */
    .slider-arrow,
    .pagination-dots {
        display: none !important;
    }

    .container {
        width: 100% !important;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .tickets {
        padding: 180px 0 60px;
    }

    .ticket-inner {
        padding: 15px;
    }

    .ticket-image {
        width: 80px;
        height: 80px;
    }

    .ticket-content h3 {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .btn-primary {
        padding: 7px 12px;
        font-size: 0.85rem;
    }

    .coming-soon-ribbon {
        top: 15px;
        right: 0px;
        padding: 5px 40px !important;
        font-size: 10px !important;
    }
}

/* Estilo para el listón "Próximamente" */
.coming-soon-ribbon {
    position: absolute;
    top: 35px;
    right: -30px;
    background-color: var(--accent-color);
    color: rgb(255, 0, 0);
    padding: 5px 30px;
    font-size: 14px;
    font-weight: bold;
    transform: rotate(45deg);
    transform-origin: center;
    z-index: 2;
    box-shadow: 0 2px 5px rgb(236, 118, 21);
    text-transform: uppercase;
}

/* Estilo para botones desactivados */
.btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
    background-color: #cccccc;
    color: #666;
}

/* Asegurar que el ticket-inner tenga posición relativa para el listón */
.ticket-inner {
    position: relative;
    overflow: hidden;
}

/* Animación para el listón */
@keyframes ribbonPulse {
    0% {
        transform: rotate(45deg) scale(1);
    }

    50% {
        transform: rotate(45deg) scale(1.05);
    }

    100% {
        transform: rotate(45deg) scale(1);
    }
}

.coming-soon-ribbon {
    animation: ribbonPulse 2s infinite;
}

/****** SITIOS TURISTICOS ******/

.sitios-turisticos {
    background-image: url('../img/fondositios.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    min-height: 2000px;
    position: relative;
    z-index: 4;
    margin-top: -500px;
    padding-top: 550px;
}

.sitios-container {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.sitio-card {
    text-align: center;
    width: 300px;
}

.circle-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    background-image: url('../img/ticket1.jpg');
    background-size: cover;
    background-position: center;
    border: 8px solid var(--primary-color);
}


/* Agrega estas reglas en tu CSS */
.sitio-card:nth-child(1) .circle-image {
    background-image: url('../img/valle.jpg');
}

.sitio-card:nth-child(2) .circle-image {
    background-image: url('../img/chaxa.jpg');
}

.sitio-card:nth-child(3) .circle-image {
    background-image: url('../img/tara.jpg');
}

.sitio-card:nth-child(4) .circle-image {
    background-image: url('../img/monjes_packana.jpg');
}

.sitio-card:nth-child(5) .circle-image {
    background-image: url('../img/aguas_calientes.jpg');
}

.sitio-card:nth-child(6) .circle-image {
    background-image: url('../img/pueblo_de_sencor.jpg');
}

.sitio-card:nth-child(7) .circle-image {
    background-image: url('../img/vilaco.jpg');
}

.sitio-card:nth-child(8) .circle-image {
    background-image: url('../img/geyser1.png');
}

.sitio-card h3 {
    color: var(--secondary-color);
}

/****** QUIENES SOMOS******/
.quienes-somos {
    background-color: var(--background-blue);
    color: var(--text-color);
    padding: 80px 0 350px 0;
    position: relative;
    top: -400px;
    margin-bottom: -400px;
    z-index: 1;
    height: auto;
}

.quienes-somos .container {
    padding-top: 320px;
}

.quienes-somos .container h2 {
    color: #326E94;
    margin-bottom: 50px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    text-align: justify;
}

.about-content.admin-section {
    gap: 150px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #9a0000;
}

.heart-frame {
    position: relative;
    width: 520px;
    height: 520px;
    flex-shrink: 0;
}

.heart-imagee {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 6;
}

.lider_png {
    width: 100% !important;
    background-size: cover !important;
}

/* Versión móvil */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .heart-frame {
        width: 100%;
        height: 300px;
        margin: 30px auto 0;
    }

    .leader-section {
        margin-top: 40px;
        flex-direction: column-reverse !important;
    }

    .lider_png {
        width: 100% !important;
    }

    .admin_png {
        width: 100% !important;
    }

    .admin-section {
        margin-top: 40px;
        flex-direction: column-reverse !important;
    }

    .admin-contact-simple p {
        text-align: left !important;
    }
}

/* Estilos para la sección del administrador */
.about-content.admin-section {
    margin-top: 60px;
    gap: 150px !important;
}

.admin-contact-simple {
    text-align: left;
}

.admin_png {
    width: 100% !important;
    background-size: cover !important;
    border-radius: 10px;
    z-index: 10;
    position: relative;
}

/****** Sitios Turísticos ******/
.servicios {
    background-image: url('../img/fondoservicios.png');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 8;
    padding-top: 450px;
    margin-top: -450px;
    /* Sube la sección 100px */
    margin-bottom: 100px;

}

.servicios-content {
    display: flex;
    gap: 50px;
    align-items: center;
    /* Alinea verticalmente los íconos y el texto */
}

.servicios-icons {
    display: flex;
    flex-direction: column;
    gap: 30px;
}


.icon {
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon.globe {
    background-image: url('globe-icon.png');
}

.icon.ticket {
    background-image: url('ticket-icon.png');
}

.icon.devices {
    background-image: url('devices-icon.png');
}

/* Estilo para el texto */
.servicios-text {
    flex: 1;
    margin-bottom: 100px;
}

.servicios-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-color);
    color: #5e0000;
    line-height: 1.6;
    /* Mejora la legibilidad */
}

.servicios-titulo {
    position: absolute;
    top: 300px;
    /* Ajustado para bajarlo un poco */
    right: 350px;
    font-size: 2.5rem;
    color: var(--primary-color);
    z-index: 10;
    color: #9a0000;
}

/* Estilos para móvil (max-width: 768px) */
@media only screen and (max-width: 768px) {
    .servicios {
        padding-top: 200px;
        margin-bottom: 50px;
        background-position: top center;
    }

    .servicios-titulo {
        position: static;
        text-align: center;
        margin-top: 30px;
        font-size: 2rem;
        width: 100%;
        right: auto;
    }

    .servicios-content {
        flex-direction: column;
        gap: 30px;
    }

    .servicios-icons {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
        order: 1;
    }

    .icon {
        width: 80px;
        height: 80px;
    }

    .icon svg {
        width: 60px;
        height: 60px;
    }

    .servicios-text {
        margin-bottom: 30px;
        order: 2;
        padding: 0 15px;
    }

    .servicios-text p {
        font-size: 0.9rem;
        text-align: center;
    }
}

/******* Contacto Section *******/
.contacto {
    background-image: url('../img/fondocontacto.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding-top: 350px;
    margin-top: -280px;
    /* Sube la sección 100px */
    z-index: 9;
    position: relative;
    padding-bottom: 10%;

}

.contacto h2 {
    color: var(--white);
    text-align: center;
}

.contacto-content {
    display: flex;
    gap: 50px;

}

.contacto-form {
    flex: 2;
    background-color: #ff752b2c;
    padding: 30px;
    border-radius: 20px;
    border-color: #ff742b;
    border-style: solid;

}

.contacto-form h2 {
    font-family: var(--e-global-typography-primary-font-family), Sans-serif;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    background-color: #ffffff00;
    border: 2px solid white;
    border-radius: 4px;

}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contacto-info {
    flex: 1;
    margin-top: 12%;
}

.info-item h3,
.info-item p {
    margin: 0;
    line-height: 1.1;
}


.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    color: var(--white);
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px 0;
    text-align: center;

}

/* Scroll Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.arrow-up {
    font-size: 24px;
}

/* Chat Button */
.chat-button {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 60px;
    height: 60px;
    background-color: #4285F4;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    z-index: 999;
}

.chat-icon {
    font-size: 24px;
}

/* Responsive */
@media (max-width: 992px) {

    .hero .container,
    .about-content,
    .servicios-content,
    .contacto-content {
        flex-direction: column;
    }

    .heart-frame {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }

    .ticket-card {
        width: 100%;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .auth-buttons {
        display: none;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

}

@media (max-width: 576px) {
    .sitio-card {
        width: 100%;
    }

    .circle-image {
        width: 200px;
        height: 200px;
    }
}

/* Sitios turísticos: 2 columnas en móvil */
@media (max-width: 768px) {
    .sitios-turisticos {
        min-height: auto;
        margin-top: -800px;
        padding-top: 500px;
        padding-bottom: 60px;
    }

    .sitios-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .sitio-card {
        width: 100%;
        text-align: center;
    }

    .circle-image {
        width: 120px;
        height: 120px;
        margin: 0 auto 10px;
        border: 5px solid var(--primary-color);
    }

    .sitio-card h3 {
        font-size: 0.85rem;
        margin-bottom: 0;
    }

    /* Blue background: pull quienes-somos much higher on mobile */
    .quienes-somos {
        top: -600px;
        margin-bottom: -600px;
        padding-top: 0;
    }

    .quienes-somos .container {
        padding-top: 640px;
    }
}

/* ============================================
/* ============================================
   CONTACTO SIMPLIFICADO - Estilos Premium
   ============================================ */
.admin-contact-simple {
    margin-top: 30px;
    padding: 20px;
    border-left: 4px solid #FFB347;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 10px 10px 0;
    transition: all 0.3s ease;
}

.admin-contact-simple:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.admin-contact-simple p {
    margin: 0;
    line-height: 1.6;
}

.admin-contact-simple a {
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
}

.admin-contact-simple a:hover {
    color: #FFB347 !important;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(255, 179, 71, 0.3);
}



.signature-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.signature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.signature-item:hover {
    transform: translateX(5px);
}

.signature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.signature-item:hover .signature-icon {
    background: #FF5500;
    transform: scale(1.1);
}

.signature-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.signature-value {
    color: #fff;
    font-weight: 500;
}

.signature-value a {
    color: #FFB347;
    text-decoration: none;
    transition: color 0.3s ease;
}

.signature-value a:hover {
    color: #fff;
    text-decoration: underline;
}

.signature-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.signature-role {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive para firma */
@media (max-width: 768px) {
    .admin-signature {
        padding: 20px;
        margin-top: 20px;
    }

    .signature-title {
        font-size: 0.95rem;
    }

    .signature-item {
        font-size: 0.85rem;
    }

    .signature-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* ============================================================
   Sección Otros Destinos (Tocotoco)
   ============================================================ */
.tocotoco-section {
    background: transparent !important;
    padding: 80px 0 60px;
    margin-top: 0;
    position: relative;
    z-index: 5;
}

.tocotoco-title {
    text-align: center !important;
    color: #1a1a2e !important;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

/* Fondos individuales por destino */
.toco-globo .toco-inner {
    background-image: url('../../views/globo-2.jpg');
}

.toco-luna .toco-inner {
    background-image: url('../../views/valleluna3.png');
}

.toco-piedras .toco-inner {
    background-image: url('../../views/piedras2.jpg');
}

.toco-geyser .toco-inner {
    background-image: url('../../views/geyser1.png');
}

.toco-salares .toco-inner {
    background-image: url('../../views/salares-1.jpg');
}

.toco-vallecitos .toco-inner {
    background-image: url('../../views/vallecitos-3.jpg');
}

.toco-uyuni .toco-inner {
    background-image: url('../../views/uyuni-4.png');
}

.toco-arcoiris .toco-inner {
    background-image: url('../../views/arcoiris-1.png');
}

.toco-baltinache .toco-inner {
    background-image: url('../../views/baltinache.2.jpg');
}

.toco-astro .toco-inner {
    background-image: url('../../views/astro-4.jpg');
}

.toco-caravana .toco-inner {
    background-image: url('../../views/caravana-2.jpg');
}

.toco-puritama .toco-inner {
    background-image: url('../../views/puritama-1.jpg');
}

.toco-trekking .toco-inner {
    background-image: url('../../views/trekking-4.png');
}

.toco-cejar .toco-inner {
    background-image: url('../../views/cejar-1.jpg');
}

.toco-inner {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px 50px;
    width: 100%;
    height: 100%;
    position: relative;
}

/* Overlay semitransparente para mejorar legibilidad */
.toco-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.30);
    border-radius: inherit;
    pointer-events: none;
}

.toco-inner .ticket-image,
.toco-inner .ticket-content {
    position: relative;
    z-index: 1;
}

.toco-inner .ticket-content h3 {
    color: #fff !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* Responsive mobile para el carrusel Tocotoco */
@media (max-width: 768px) {
    .tocotoco-section {
        padding: 30px 0 40px;
        background-image: url('../img/ticketfondo.png') !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        margin-top: -500px !important;
        padding-top: 500px !important;
    }

    .tocotoco-title {
        font-size: 1.8rem !important;
        margin-bottom: 20px;
        padding: 0 15px;
        text-align: center !important;
    }

    /* En móvil: slider se convierte en lista vertical, igual que el 1er carrusel */
    .tocotoco-slider {
        display: block !important;
        padding: 0;
    }

    .tocotoco-viewport {
        width: 100% !important;
        margin: 0 !important;
        overflow: visible !important;
    }

    .tocotoco-container {
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        gap: 20px !important;
        padding: 0 15px !important;
        transform: none !important;
    }

    .tocotoco-card {
        width: 100% !important;
        min-width: 100% !important;
        height: 160px !important;
        min-height: 160px !important;
        background-size: 100% 100% !important;
        flex-shrink: 0;
        margin: 0 auto;
    }

    .tocotoco-card .toco-inner {
        flex-direction: row;
        padding: 15px 20px;
        height: 100%;
        min-height: 160px;
        align-items: center;
    }

    .tocotoco-card .ticket-image {
        width: 100px;
        height: 100px;
        min-width: 100px;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .tocotoco-card .ticket-content {
        flex: 1;
        overflow: hidden;
        padding-right: 5px;
    }

    .tocotoco-card .ticket-content h3 {
        font-size: 0.95rem;
        margin-bottom: 10px;
        line-height: 1.3;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    /* Ocultar flechas en móvil - igual que el 1er carrusel */
    .tocotoco-arrow-left,
    .tocotoco-arrow-right,
    .tocotoco-dots {
        display: none !important;
    }
}