* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fefaf5;
    color: #2d2a24;
}








/* ========== HEADER ========== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5%;
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: relative;
    z-index: 100;
}

/* Logo con imagen */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    max-height: 50px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.02);
}

/* ========== MAIN NAVIGATION ========== */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav ul li a {
    text-decoration: none;
    color: #2d2a24;
    font-weight: 600;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.main-nav ul li a:hover {
    color: #e67e22;
}

/* ========== DROPDOWN BASE ========== */
.dropdown {
    position: static;
}

.dropdown > a i {
    font-size: 0.75rem;
    margin-left: 0.3rem;
    transition: transform 0.3s;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

/* PANEL - ANCHO COMPLETO */
.dropdown-panel {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    background: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    border-top: 1px solid #f0e4d4;
    border-bottom: 1px solid #f0e4d4;
}

.dropdown:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
}

/* CONTENEDOR INTERNO - 1200px CENTRADO */
.dropdown-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* TOUR ROW - HORIZONTAL Y CENTRADO */
.tour-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

/* TOUR MINI CARD - FOTOS MÁS GRANDES */
.tour-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0.75rem;
    border-radius: 16px;
    min-width: 120px;
}

.tour-mini:hover {
    transform: translateY(-5px);
    background-color: #fef5ed;
}

.tour-mini img {
    width: 110px;
    height: 110px;
    border-radius: 20px;
    object-fit: cover;
    border: 2px solid #f0e4d4;
    transition: all 0.3s;
    margin-bottom: 0.75rem;
}

.tour-mini:hover img {
    border-color: #e67e22;
    transform: scale(1.05);
}

.tour-mini span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4a453c;
    line-height: 1.4;
    max-width: 120px;
}

/* ========== HEADER CTA ========== */
.header-cta .btn-book {
    background-color: #e67e22;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.header-cta .btn-book:hover {
    background-color: #cf711f;
}

/* ========== RESPONSIVE - MENU DESAPARECE MENOS DE 1200px ========== */
@media (max-width: 1200px) {
    /* El menú de navegación completo se oculta */
    .main-nav {
        display: none;
    }
    
    /* Mostramos un botón de menú hamburguesa */
    .mobile-menu-btn {
        display: block;
    }
}

/* Botón de menú hamburguesa (solo visible en móvil/tablet) */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #e67e22;
    cursor: pointer;
    padding: 0.5rem;
}

/* Menú móvil desplegable */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 1rem;
    max-height: 80vh;
    overflow-y: auto;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav .mobile-dropdown {
    border-bottom: 1px solid #f0e4d4;
}

.mobile-nav .mobile-dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    text-decoration: none;
    color: #2d2a24;
    font-weight: 600;
}

.mobile-nav .mobile-dropdown .mobile-dropdown-content {
    display: none;
    padding: 0.5rem 1rem 1rem 2rem;
    background: #fefaf5;
}

.mobile-nav .mobile-dropdown .mobile-dropdown-content.active {
    display: block;
}

.mobile-nav .mobile-tour-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    text-decoration: none;
    border-bottom: 1px solid #f0e4d4;
}

.mobile-nav .mobile-tour-item img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
}

.mobile-nav .mobile-tour-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: #4a453c;
}

.mobile-nav .mobile-tour-item:hover {
    background-color: #fef5ed;
}

/* Ajustes para desktop grande (más de 1200px) */
@media (min-width: 1201px) {
    .mobile-menu-btn {
        display: none !important;
    }
    
    .mobile-nav {
        display: none !important;
    }
}

/* Ajustes adicionales para pantallas entre 1200px y 1400px */
@media (min-width: 1201px) and (max-width: 1400px) {
    .tour-mini img {
        width: 95px;
        height: 95px;
    }
    
    .tour-mini {
        min-width: 100px;
    }
    
    .tour-row {
        gap: 1.8rem;
    }
}

/* Para tablets grandes (entre 950px y 1200px) */
@media (max-width: 1200px) and (min-width: 769px) {
    header {
        padding: 0.8rem 3%;
    }
    
    .logo-img {
        height: 45px;
        max-height: 45px;
    }
}

/* Para móviles (menos de 768px) */
@media (max-width: 768px) {
    header {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 0.7rem 4%;
    }
    
    .logo-img {
        height: 40px;
        max-height: 40px;
    }
    
    .header-cta .btn-book {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .mobile-nav {
        top: 60px;
    }
}








/* ========== MOSTRAR/OCULTAR MENÚS SEGÚN PANTALLA ========== */
@media (min-width: 1200px) {
    .desktop-only {
        display: flex !important;
    }
    .mobile-menu-btn {
        display: none !important;
    }
    .mobile-nav-overlay {
        display: none !important;
    }
}

@media (max-width: 1199px) {
    .desktop-only {
        display: none !important;
    }
    .mobile-menu-btn {
        display: flex !important;
    }
}

/* ========== BOTÓN MENÚ HAMBURGUESA ========== */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #e67e22;
    cursor: pointer;
    padding: 0.5rem;
    align-items: center;
    justify-content: center;
}

/* ========== MENÚ MÓVIL (OVERLAY) ========== */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-container {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background: white;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-nav-overlay.active .mobile-nav-container {
    transform: translateX(0);
}

/* HEADER DEL MENÚ MÓVIL */
.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    border-bottom: 1px solid #f0e4d4;
    background: white;
}

.mobile-logo {
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-logo i {
    color: #e67e22;
    font-size: 1.5rem;
}

.mobile-logo span span {
    color: #e67e22;
}

.mobile-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #4a453c;
    cursor: pointer;
    padding: 0.5rem;
}

/* CONTENIDO DEL MENÚ MÓVIL (CON SCROLL) */
.mobile-nav-content {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

.mobile-link {
    display: block;
    padding: 1rem 1.2rem;
    text-decoration: none;
    color: #2d2a24;
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 1px solid #f0e4d4;
    transition: background 0.2s;
}

.mobile-link:hover {
    background-color: #fef5ed;
    color: #e67e22;
}

/* DROPDOWN MÓVIL */
.mobile-dropdown {
    border-bottom: 1px solid #f0e4d4;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.2rem;
    text-decoration: none;
    color: #2d2a24;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s;
}

.mobile-dropdown-toggle:hover {
    background-color: #fef5ed;
    color: #e67e22;
}

.mobile-dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s;
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    display: none;
    background-color: #fefaf5;
    padding: 0.5rem 0;
}

.mobile-dropdown.active .mobile-dropdown-content {
    display: block;
}

/* TOUR ITEM MÓVIL (con foto) */
.mobile-tour-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.2rem 0.8rem 2rem;
    text-decoration: none;
    border-bottom: 1px solid #f0e4d4;
    transition: background 0.2s;
}

.mobile-tour-item:hover {
    background-color: #fef5ed;
}

.mobile-tour-item img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid #f0e4d4;
}

.mobile-tour-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: #4a453c;
    flex: 1;
}

/* Ajustes para el header responsive */
@media (max-width: 1199px) {
    header {
        padding: 0.8rem 4%;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .logo i {
        font-size: 1.5rem;
    }
    
    .header-cta .btn-book {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}







/* HERO FULLSCREEN */
.hero-fullscreen {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.25)), 
                      url('/img/Hero.jpg');
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
    padding: 1.2rem 2rem;
    margin: 0 1.5rem;
    animation: fadeInUp 0.9s ease forwards;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 5.6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.hero-content h1 span {
    color: #F7B05E;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.subhead {
    font-size: clamp(1.1rem, 4vw, 1.6rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    margin-bottom: 1.6rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.6rem;
    border-radius: 60px;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #FFF9E8;
    border: 1px solid rgba(255, 245, 200, 0.5);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #E67E22;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 1rem 2.4rem;
    border-radius: 56px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.btn-cta:hover {
    background: #CF711F;
    transform: translateY(-3px);
}

.hover-hint {
    margin-top: 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #FFE9C7;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 30px;
}

.tour-trigger {
    cursor: pointer;
    border-bottom: 1px dashed #FFD966;
}

/* Tooltip con las experiencias */
.tour-preview-card {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(16px);
    color: white;
    border-radius: 48px;
    padding: 0.8rem 1.8rem;
    display: flex;
    gap: 12px;
    z-index: 1000;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 215, 130, 0.5);
    flex-wrap: wrap;
    justify-content: center;
    pointer-events: none;
}

.tour-trigger:hover + .tour-preview-card,
.tour-preview-card:hover {
    opacity: 1;
    visibility: visible;
}

.tour-preview-card span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #2c2b26;
    padding: 0.3rem 0.8rem;
    border-radius: 40px;
}

/* Animación */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        padding: 1rem;
    }
    
    .hero-badge {
        padding: 0.4rem 1.2rem;
        font-size: 0.7rem;
        gap: 0.5rem;
    }
    
    .btn-cta {
        padding: 0.8rem 1.6rem;
        font-size: 1rem;
    }
    
    .tour-preview-card {
        width: 90%;
        gap: 8px;
        bottom: 15px;
    }
}







/* FOOTER */
footer {
    text-align: center;
    padding: 2rem;
    background-color: #1e1b17;
    color: #aaa;
    margin-top: 3rem;
}

/* RESPONSIVE: si la pantalla es menor, el dropdown se adapta */
@media (max-width: 900px) {
    .dropdown-panel {
        left: auto;
        right: 0;
        transform: translateX(0);
    }
    
    .tour-row {
        justify-content: center;
    }
}









/* TOURS SECTION */
.tours-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fef8f0, #fff5eb);
}

.tours-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e2f;
    margin-bottom: 0.5rem;
}

.section-title span {
    color: #e67e22;
}

.section-subtitle {
    text-align: center;
    color: #7f8c6d;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Grid: 3 columnas, 2 filas automáticas */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Tarjetas flotantes */
.tour-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tour-card:hover .card-image img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e67e22;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e2f;
    margin-bottom: 0.5rem;
}

.card-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
}

.card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 0.8rem;
    color: #e67e22;
    font-weight: 500;
}

.card-meta span {
    background: #fef2e6;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
}

.card-btn {
    display: inline-block;
    background: transparent;
    border: 2px solid #e67e22;
    color: #e67e22;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: auto;
}

.card-btn:hover {
    background: #e67e22;
    color: white;
}

/* Responsive: tablet */
@media (max-width: 992px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Responsive: mobile */
@media (max-width: 640px) {
    .tours-grid {
        grid-template-columns: 1fr;
    }
    
    .tours-section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}









/* BOOKING SECTION */
.booking-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f0f4f0, #e8ede6);
}

.booking-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* COLUMNA IZQUIERDA - INFORMACIÓN DE EMPRESA */
.company-info {
    background: linear-gradient(135deg, #1a3c2c, #0f2b1f);
    padding: 2.5rem;
    color: white;
}

.company-logo h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: -0.5px;
}

.company-logo h2 span {
    color: #f7b05e;
}

.company-logo .tagline {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c9a87b;
    margin-bottom: 2rem;
}

.company-description {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.company-description p {
    font-size: 1rem;
    line-height: 1.6;
    color: #e0d6c8;
}

.company-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.8rem;
    min-width: 40px;
}

.feature h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature p {
    font-size: 0.8rem;
    color: #c9baa5;
}

.company-contact {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
}

.contact-item span {
    font-size: 1.1rem;
    min-width: 28px;
}

.company-social {
    display: flex;
    gap: 1rem;
}

.company-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.company-social a:hover {
    background: #e67e22;
    transform: translateY(-3px);
}

/* COLUMNA DERECHA - FORMULARIO */
.booking-form {
    padding: 2.5rem;
    background: white;
}

.booking-form h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a3c2c;
    margin-bottom: 0.5rem;
}

.booking-form h3 span {
    color: #e67e22;
}

.booking-form > p {
    color: #7f8c6d;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2c3e2f;
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fefefe;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e67e22;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox {
    display: flex;
    align-items: center;
}

.checkbox label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
    cursor: pointer;
}

.checkbox input {
    width: auto;
    margin: 0;
}

.checkbox a {
    color: #e67e22;
    text-decoration: none;
}

.checkbox a:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    background: #e67e22;
    color: white;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    background: #cf711f;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(230, 126, 34, 0.3);
}

.form-note {
    text-align: center;
    font-size: 0.7rem;
    color: #aaa;
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .booking-container {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .company-info {
        order: 2;
    }
    
    .booking-form {
        order: 1;
    }
}

@media (max-width: 640px) {
    .booking-section {
        padding: 2rem 1rem;
    }
    
    .company-info,
    .booking-form {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}







/* WHY VISIT CUSCO SECTION */
.why-cusco-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fffaf5, #fef4ea);
    position: relative;
}

.why-cusco-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: #e67e22;
    background: rgba(230, 126, 34, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e2f;
    margin-bottom: 0.8rem;
}

.section-header h2 span {
    color: #e67e22;
    position: relative;
}

.section-header h2 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #e67e22;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: #7f8c6d;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid de 4 columnas */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
}

/* Tarjetas */
.feature-card {
    background: white;
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(230, 126, 34, 0.08);
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(230, 126, 34, 0.3);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #1a3c2c;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.feature-card p {
    font-size: 0.85rem;
    color: #7f8c6d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-link {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #e67e22;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.feature-link:hover {
    border-bottom-color: #e67e22;
    transform: translateX(3px);
}

.section-footer {
    text-align: center;
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(230, 126, 34, 0.15);
}

.section-footer p {
    font-size: 0.9rem;
    color: #a08c74;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Responsive: 1024px */
@media (max-width: 1024px) {
    .features-grid {
        gap: 1.2rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon {
        font-size: 2.8rem;
    }
}

/* Responsive: tablet */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Responsive: mobile */
@media (max-width: 480px) {
    .why-cusco-section {
        padding: 3rem 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-tag {
        font-size: 0.65rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}








/* TESTIMONIALS SECTION */
.testimonials-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.testimonials-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.2rem;
}

.google-icon {
    font-size: 1.2rem;
}

.google-rating {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a3c2c;
}

.google-stars {
    color: #fbbc04;
    font-size: 1rem;
    letter-spacing: 2px;
}

.google-reviews {
    font-size: 0.8rem;
    color: #7f8c6d;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e2f;
    margin-bottom: 0.5rem;
}

.section-header h2 span {
    color: #e67e22;
}

.section-header p {
    font-size: 1rem;
    color: #7f8c6d;
}

/* Grid de testimonios */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

/* Tarjeta de testimonio */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}

.avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e67e22, #f39c12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.user-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a3c2c;
    margin-bottom: 0.2rem;
}

.stars {
    color: #fbbc04;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.google-logo {
    margin-left: auto;
    width: 28px;
    height: 28px;
    background: #4285f4;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.8rem;
}

.testimonial-date {
    font-size: 0.7rem;
    color: #aaa;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.2rem;
    font-style: italic;
}

.testimonial-tour {
    display: inline-block;
    background: #fef2e6;
    color: #e67e22;
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 500;
}

/* Google CTA */
.google-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.google-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 2px solid #e0e0e0;
    padding: 0.7rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    color: #5a3e2b;
    font-weight: 600;
    transition: all 0.3s ease;
}

.google-btn:hover {
    border-color: #e67e22;
    background: #fef2e6;
    transform: translateY(-2px);
}

.google-btn span {
    font-size: 1.1rem;
}

.google-cta p {
    font-size: 0.75rem;
    color: #aaa;
    margin-top: 0.8rem;
}

/* Responsive */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .testimonials-section {
        padding: 3rem 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .google-badge {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.4rem;
    }
    
    .google-rating {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 1.2rem;
    }
    
    .avatar {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}








/* LOGOS SECTION */
.logos-section {
    padding: 4rem 2rem;
    background: white;
    border-top: 1px solid #f0e6db;
    border-bottom: 1px solid #f0e6db;
}

.logos-container {
    max-width: 800px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 3px;
    font-weight: 600;
    color: #e67e22;
    background: rgba(230, 126, 34, 0.08);
    padding: 0.3rem 1rem;
    border-radius: 30px;
    margin-bottom: 0.8rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e2f;
    margin-bottom: 0.5rem;
}

.section-header h2 span {
    color: #e67e22;
}

.section-header p {
    font-size: 0.9rem;
    color: #7f8c6d;
}

/* Grid horizontal - 4 columnas iguales */
.logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: center;
}

/* Cada logo */
.logo-item {
    text-align: center;
}

.logo-image {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    width: auto;
    filter: grayscale(0%);
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0.8;
}

.logo-image:hover {
    transform: scale(1.05);
    opacity: 1;
    filter: grayscale(0%);
}

/* Si quieres logos en blanco y negro que se coloreen al hacer hover */
.logo-image-grayscale {
    filter: grayscale(100%);
    opacity: 0.6;
}

.logo-image-grayscale:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive: tablet */
@media (max-width: 768px) {
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
}

/* Responsive: mobile */
@media (max-width: 480px) {
    .logos-section {
        padding: 3rem 1rem;
    }
    
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .logo-image {
        max-height: 60px;
    }
}







/* FOOTER */
.footer {
    background: #1a2e1f;
    color: #d4cdb2;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

/* Títulos de columnas */
.footer-col h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: white;
    text-align: left;
}

.footer-col h3 span {
    color: #e67e22;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    padding-bottom: 0.6rem;
    text-align: left;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 2px;
    background: #e67e22;
}

/* About text */
.about-text {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #c4bca6;
    text-align: left;
}

/* Social links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    justify-content: flex-start;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    text-decoration: none;
    color: #d4cdb2;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #e67e22;
    color: white;
    transform: translateY(-3px);
}

/* Contact list - SIN bullets */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 0.9rem;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #c4bca6;
    text-align: left;
}

.contact-icon {
    min-width: 28px;
    font-size: 1rem;
}

/* Links list - CON bullets (puntitos) */
.links-list {
    list-style: disc;
    padding-left: 1.2rem;
    margin: 0;
}

.links-list li {
    margin-bottom: 0.75rem;
    text-align: left;
}

.links-list a {
    text-decoration: none;
    color: #c4bca6;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.links-list a:hover {
    color: #e67e22;
    transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.8rem 2rem;
    margin-top: 1rem;
}

.footer-bottom-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #a0a890;
    margin: 0;
    text-align: left;
}

.designed-by span {
    color: #e67e22;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-container {
        gap: 2rem;
        padding: 3rem 1.5rem 2rem;
    }
}

@media (max-width: 640px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 1.5rem 2rem;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom p {
        text-align: center;
    }
    
    .footer-col h3,
    .footer-col h4,
    .about-text,
    .contact-list li {
        text-align: left;
    }
    
    .social-links {
        justify-content: flex-start;
    }
    
    .links-list {
        padding-left: 1.2rem;
    }
}