
    
/* 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;
}
.back-to-top,
.floating-buttons {
    display: none !important;
}

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 {


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;
}

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('assets/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 {
    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 {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
z-index: -1;
/* quitamos el transform de paralaje aquí, o lo dejamos aparte */
opacity: 0;
transition: opacity 1s ease-in-out;
}
.hero-bg.visible {
opacity: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 80%;
    max-width: 1200px;
}

.hero-logo {
    background-color: white;
    width: 120px;
    height: 120px;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Contador */
.tour-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 15px 30px;
    border-radius: 5px;
    margin-top: 30px;
}

.date-location {
    display: flex;
    gap: 30px;
}

.date, .location {
    display: flex;
    align-items: center;
    color: #333;
}

.date i, .location i {
    margin-right: 10px;
    color: #FF5500;
}

.countdown {
    display: flex;
    gap: 10px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #FF5500;
    color: white;
    padding: 10px;
    border-radius: 5px;
    min-width: 60px;
}

.countdown-number {
    font-size: 24px;
    font-weight: bold;
}

.countdown-label {
    font-size: 12px;
    text-transform: uppercase;
}

.countdown-separator {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

/* Contenido principal */
.main-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    gap: 30px;
}

.content-left {
    flex: 2;
}

.content-right {
    flex: 1;
}

.section-title {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

.section-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Tickets */
.tickets-container {
    background-color: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.ticket-item {
    background-color: #f8f8f8;
    padding: 20px;
    border-bottom: 1px dashed #ddd;
}

.ticket-title {
    color: #FF5500;
    font-weight: bold;
    margin-bottom: 5px;
}

.ticket-info {
    color: #777;
    font-size: 14px;
    margin-bottom: 10px;
}

.ticket-expiry {
    color: #777;
    font-size: 14px;
    margin-bottom: 15px;
}

.ticket-price-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-top: 1px dotted #ddd;
}

.ticket-price-label {
    color: #555;
    font-size: 14px;
}

.ticket-price {
    font-weight: bold;
    color: #333;
    font-size: 18px;
}

.ticket-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    background-color: #eee;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.quantity-input {
    width: 50px;
    height: 30px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.ticket-subtotal {
    font-weight: bold;
    color: #333;
    font-size: 18px;
}

.ticket-total {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #f0f0f0;
    font-weight: bold;
}

.btn-get-tickets {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #FF5500;
    color: white;
    text-align: center;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.btn-get-tickets:hover {
    background-color: #E04A00;
}

/******* Contacto Section *******/
.contacto {
background-image: url('./assets/img/fondocontacto.png');
background-size: cover; 
background-position: center;
color: var(--white);
padding-top:350px;
margin-top: 130px; /* 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;
}
}
/* Olas decorativas */
.wave-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url('img/wave.png');
    background-size: 100% 100%;
}

/* Botones flotantes */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
}

.floating-btn.settings {
    background-color: #333;
}

.floating-btn.chat {
    background-color: #0084FF;
}



/* Media Queries para móvil (max-width: 768px) */
@media (max-width: 768px) {
    /* Ajustes generales */
    .container {
        padding: 0 20px;
        width: 90%;
    }
     .contacto-form{
        width: 350px;
    }
    /* Hero Section */
    .hero {
        height: 80vh;
    }
    
    .hero-content {
        width: 90%;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .tour-info {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .date-location {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .countdown {
        margin-top: 15px;
    }
    
    /* Contenido principal */
    .main-content {
        flex-direction: column;
        padding: 30px 15px;
    }
    
    /* Sección de tickets */
    .ticket-price-container {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .ticket-price-label,
    .ticket-price {
        width: 100%;
        text-align: center;
    }
    
    /* Sección de contacto */
    .contacto {
        padding-top: 200px;
        margin-top: 80px;
    }
    
    .contacto-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .contacto-info {
        margin-top: 0;
        text-align: center;
    }
    
    /* Modal de compra */
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 20px;
    }
    
    /* Ajustes de texto */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    /* Navbar en móvil */
    .navbar {
        padding: 10px 0;
    }
    
    .logo img {
        height: 70px;
    }
    
    /* Contador */
    .countdown-item {
        min-width: 50px;
        padding: 8px;
    }
    
    .countdown-number {
        font-size: 18px;
    }
    
    .countdown-label {
        font-size: 10px;
    }
}

/* Media Queries para móvil pequeño (max-width: 480px) */
@media (max-width: 480px) {
    /* Hero Section */
    .hero-title {
        font-size: 28px;
    }
    
    .countdown {
        gap: 5px;
    }
   
    .countdown-item {
        min-width: 40px;
    }
    
    /* Tickets */
    .ticket-item {
        padding: 15px;
    }
    
    .quantity-input {
        width: 40px;
    }
    
    /* Formulario de contacto */
    .contacto-form {
        padding: 20px;
    }
    
    /* Botones */
    .btn {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .btn-get-tickets {
        padding: 12px;
        font-size: 15px;
    }
    
    /* Modal */
    .modal-content {
        width: 98%;
        padding: 15px;
    }
    
    .form-group input,
    .form-group select {
        padding: 8px;
        font-size: 14px;
    }
    
    .btn-submit {
        padding: 10px;
        font-size: 16px;
    }
}