/* ============================================
   VARIABLES Y RESET
   ============================================ */
:root {
    --color-primary: #1cb827;
    --color-secondary: #49bdd1;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-dark: #1a1a1a;
    --color-gray: #666666;
    --color-light-gray: #f5f5f5;
    
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Bebas Neue', cursive;
    
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-black);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 15px;
}

.section__subtitle {
    font-size: 1.1rem;
    color: var(--color-gray);
    font-weight: 300;
}

/* ============================================
   BOTONES
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn--primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn--primary:hover {
    background-color: #16a020;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn--whatsapp {
    background-color: #25D366;
    color: var(--color-white);
}

.btn--whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn--small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn--large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn--block {
    width: 100%;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.nav__logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 90px; /* aumentado para ser más grande */
    width: 100px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-black);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav__link {
    color: var(--color-black);
    font-weight: 400;
    transition: var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--color-primary);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__toggle {
    display: none;
    color: var(--color-black);
    font-size: 1.5rem;
    cursor: pointer;
}

.nav__toggle i {
    color: var(--color-black);
}

/* ============================================
   HERO / SLIDER
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero__slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero__slide.active {
    opacity: 1;
}

.hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: parallax 20s ease-in-out infinite;
}

@keyframes parallax {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: var(--color-white);
    padding-top: 50px; /* ajustado al header más pequeño */
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
    line-height: 1.2;
}

.hero__subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff !important;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

.hero__scroll-indicator i {
    color: #ffffff !important;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   TOURS
   ============================================ */
.tours {
    background-color: var(--color-white);
}

.tours__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.tour__card {
    background-color: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease-out both;
}

.tour__card:nth-child(1) { animation-delay: 0.1s; }
.tour__card:nth-child(2) { animation-delay: 0.2s; }
.tour__card:nth-child(3) { animation-delay: 0.3s; }
.tour__card:nth-child(4) { animation-delay: 0.4s; }
.tour__card:nth-child(5) { animation-delay: 0.5s; }
.tour__card:nth-child(6) { animation-delay: 0.6s; }

.tour__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

/* Tarjetas destacadas como más vendidos */
.tour__card {
    position: relative;
}

.tour__badge {
    position: absolute;
    top: 16px;
    left: 0;
    z-index: 2;
    background: linear-gradient(135deg, var(--color-primary) 0%, #16a020 100%);
    color: var(--color-white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 16px;
    padding-left: 20px;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 2px 12px rgba(28, 184, 39, 0.4);
    letter-spacing: 0.5px;
}

.tour__card--bestseller {
    box-shadow: 0 4px 24px rgba(28, 184, 39, 0.15);
}

.tour__card--bestseller:hover {
    box-shadow: 0 8px 32px rgba(28, 184, 39, 0.2);
}

.tour__image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.tour__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.tour__card:hover .tour__image img {
    transform: scale(1.1);
}

.tour__overlay {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: 10px 20px;
    border-radius: 0 0 0 15px;
}

.tour__price {
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.95rem;
}

.tour__content {
    padding: 25px;
}

.tour__name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-secondary);
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
}

.tour__description {
    color: var(--color-gray);
    font-size: 0.95rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.tour__duration {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-bottom: 15px;
    font-weight: 500;
}

.tour__duration i {
    color: var(--color-secondary);
    font-size: 1rem;
}

.tour__includes {
    margin-bottom: 20px;
}

.tour__includes h4 {
    color: var(--color-black);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.tour__includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tour__includes li {
    color: var(--color-gray);
    font-size: 0.85rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
}

.tour__includes li::before {
    content: "";
    width: 16px;
    height: 16px;
    margin-right: 10px;
    flex-shrink: 0;
}

/* Íconos específicos para cada elemento incluido */
.tour__includes li:nth-child(1)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2349bdd1'%3E%3Cpath d='M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1s1-.45 1-1v-1h12v1c0 .55.45 1 1 1s1-.45 1-1v-8l-2.08-5.99zM6.85 7h10.29l1.04 3H5.81l1.04-3zM19 17H5v-4.66l.12-.34h13.77l.11.34V17z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.tour__includes li:nth-child(2)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2349bdd1'%3E%3Cpath d='M11 9H9V2H7v7H5V2H3v7c0 2.12 1.66 3.84 3.75 3.97V22h2.5v-9.03C11.34 12.84 13 11.12 13 9V2h-2v7zm5-3v8h2.5v8H21V2c-2.76 0-5 2.24-5 4z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.tour__includes li:nth-child(3)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2349bdd1'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.tour__includes li:nth-child(4)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2349bdd1'%3E%3Cpath d='M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm3 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.tour__includes li:nth-child(5)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2349bdd1'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.tour__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn--secondary {
    background-color: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
}

.btn--secondary:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* ============================================
   RESERVAS
   ============================================ */
.reservas {
    background: linear-gradient(135deg, var(--color-light-gray) 0%, #e8f5e9 100%);
}

.reservas__form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form__group {
    margin-bottom: 25px;
}

.form__label {
    display: block;
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form__input,
.form__select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--color-white);
}

.form__input:focus,
.form__select:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(73, 189, 209, 0.1);
}

.nino-group {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid var(--color-secondary);
}

.nino-group h5 {
    margin: 0 0 15px 0;
    color: var(--color-black);
    font-size: 1.1rem;
    font-weight: 600;
}

.reservas__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--color-light-gray);
    border-radius: 10px;
    margin-bottom: 25px;
}

.total__label {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-black);
}

.total__amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* ============================================
   GALERÍA
   ============================================ */
.galeria {
    background-color: var(--color-white);
}

.galeria__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* Galería horizontal */
.galeria.horizontal {
    overflow: hidden;
}

.galeria.horizontal .galeria__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--color-secondary) transparent;
}

.galeria.horizontal .galeria__grid::-webkit-scrollbar {
    height: 6px;
}

.galeria.horizontal .galeria__grid::-webkit-scrollbar-track {
    background: transparent;
}

.galeria.horizontal .galeria__grid::-webkit-scrollbar-thumb {
    background: var(--color-secondary);
    border-radius: 3px;
}

.galeria.horizontal .galeria__item {
    flex: 0 0 300px;
    min-width: 300px;
    height: 200px;
}

/* Galería fija */
.galeria.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.galeria.fixed.active {
    opacity: 1;
    visibility: visible;
}

.galeria.fixed .container {
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
    background-color: var(--color-white);
    border-radius: 15px;
    padding: 30px;
    position: relative;
}

.galeria.fixed .section__header {
    margin-bottom: 30px;
}

.galeria.fixed .galeria__grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.galeria__item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 300px;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.galeria__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.galeria__item:hover img {
    transform: scale(1.1);
}

.galeria__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 184, 39, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.galeria__item:hover .galeria__overlay {
    opacity: 1;
}

.galeria__overlay i {
    color: var(--color-white);
    font-size: 2.5rem;
}

/* New styles for gallery pages */
.gallery-page .section__title {
    margin-bottom: 40px;
}

.gallery__grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery__item-page {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 250px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery__item-page:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery__item-page img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery__item-page:hover img {
    transform: scale(1.1);
}

.gallery__caption-page {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--color-white);
    padding: 15px;
    font-weight: 500;
    font-size: 0.95rem;
    transform: translateY(0%);
    transition: var(--transition);
}

.gallery-page__actions {
    text-align: center;
}

@media (max-width: 768px) {
    .gallery__grid-page {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 576px) {
    .gallery__grid-page {
        grid-template-columns: 1fr;
    }
    .gallery__item-page {
        height: 200px;
    }
}

/* ============================================
   PREGUNTAS FRECUENTES (FAQ)
   ============================================ */
.faq {
    background-color: var(--color-light-gray);
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    background-color: var(--color-white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.faq__item:hover {
    box-shadow: var(--shadow-hover);
}

.faq__question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.faq__question:hover {
    background-color: rgba(73, 189, 209, 0.05);
}

.faq__question:focus {
    outline: none;
    background-color: rgba(73, 189, 209, 0.05);
}

.faq__question i {
    font-size: 1.2rem;
    color: var(--color-secondary);
    transition: var(--transition);
}

.faq__question.active i {
    transform: rotate(180deg);
}

.faq__answer {
    color: var(--color-gray);
    font-size: 1rem;
    line-height: 1.7;
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, 
                opacity 0.5s ease, 
                padding 0.5s ease;
}

.faq__answer.show {
    max-height: 2000px;
    padding: 15px 30px 25px 30px;
    opacity: 1;
}

/* ============================================
   TIPS VIAJEROS
   ============================================ */
.tips {
    background: linear-gradient(135deg, var(--color-light-gray) 0%, #f0f8f0 100%);
}

.tips__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.tips__item {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-left: 4px solid var(--color-primary);
}

.tips__item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.tips__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--color-white);
    font-size: 2rem;
    box-shadow: var(--shadow);
}

.tips__title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 15px;
}

.tips__description {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   CONTACTO (MUY COMPACTO)
   ============================================ */
.contacto {
    background-color: var(--color-white);
    padding: 8px 0; /* muy compacto */
}

.contacto__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px; /* muy compacto */
    align-items: center;
}

.contacto__info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contacto__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
}

.contacto__item i {
    font-size: 1rem;
    color: var(--color-secondary);
    margin-top: 0;
}

.contacto__item h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--color-black);
}

.contacto__item p {
    color: var(--color-gray);
    font-size: 0.85rem;
    margin: 0;
}

.contact-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

.whatsapp-link {
    color: #25D366;
}

.whatsapp-link:hover {
    color: #20ba5a;
}

.contacto__cta {
    display: flex;
    flex-direction: column;
    gap: 12px; /* menos espacio entre CTA */
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: #318da8;
    color: var(--color-white);
    padding: 60px 0 30px;
}

.footer__content {
   
    margin-bottom: 40px;
    text-align: center;
}

.footer__logo .logo-img {
    height: 130px;
    margin-bottom: 15px;
}

.footer__logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-white);
    display: block;
}

.footer__tagline {
    color: #cccccc;
    font-size: 0.95rem;
}

.footer__social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.footer__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-white);
    display: block;
}

.social__link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgb(29 158 218);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social__link:hover {
    background-color: var(--color-secondary);
    transform: translateY(-3px);
}

.footer__cta {
    display: flex;
    justify-content: center;
}

.footer__bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.9rem;
}

/* ============================================
   MODAL
   ============================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: zoomIn 0.3s;
    width: 100%;
}

.modal__content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.modal__instructions {
    margin-top: 15px;
    color: var(--color-white);
    font-size: 0.9rem;
    text-align: center;
    opacity: 0.8;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.7); }
    to { transform: scale(1); }
}

.modal__close {
    position: absolute;
    top: -15px;
    right: -15px;
    color: var(--color-white);
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2002;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    justify-content: center;
    backdrop-filter: blur(5px);
    line-height: 1;
    border: 2px solid var(--color-white);
}

.modal__close:hover {
    color: var(--color-secondary);
    transform: scale(1.2);
}

.modal__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--color-white);
    border: 2px solid var(--color-white);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2001;
    font-size: 1.5rem;
    pointer-events: auto;
    user-select: none;
}

.modal__nav:hover {
    background: rgba(0, 0, 0, 0.9);
    color: var(--color-secondary);
    transform: translateY(-50%) scale(1.1);
}

.modal__nav--prev {
    left: 20px;
}

.modal__nav--next {
    right: 20px;
}

.modal__info {
    margin-top: 15px;
    text-align: center;
}

.modal__counter {
    display: inline-block;
    background: rgba(0, 0, 0, 0.7);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
    .nav__menu {
        position: fixed;
        top: 170px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 170px);
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 40px 20px;
        transition: var(--transition);
        gap: 20px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    }

    .nav__menu.active {
        right: 0;
    }

    .nav__toggle {
        display: block;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.1rem;
    }

    /* Simplificar fondo del hero en pantallas pequeñas para mejor rendimiento */
    .hero__image {
        background-attachment: scroll;
        animation: none;
    }

    .section__title {
        font-size: 2rem;
    }

    .contacto__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .tours__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 576px) {
    .hero {
        height: 80vh;
        min-height: 500px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .section {
        padding: 60px 0;
    }

    .section__title {
        font-size: 1.8rem;
    }

    .tours__grid {
        grid-template-columns: 1fr;
    }

    .reservas__form-container {
        padding: 25px 20px;
    }

    .galeria__grid {
        grid-template-columns: 1fr;
    }

    .btn--large {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
    }

    .gallery__item {
        height: 180px;
    }

    .gallery__header h4 {
        font-size: 1.1rem;
    }

    .tour__gallery.active {
        padding: 20px 15px;
    }
}

/* ============================================
   ANIMACIONES DE SCROLL
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* ============================================
   BOTÓN FLOTANTE DE WHATSAPP
   ============================================ */
.whatsapp-float-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1000;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: var(--color-white);
}

.whatsapp-float-text {
    color: var(--color-black);
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 4px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Animación de pulso */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .whatsapp-float-container {
        bottom: 20px;
        right: 20px;
        gap: 6px;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    
    .whatsapp-float-text {
        font-size: 0.75rem;
        padding: 3px 6px;
    }
}
