* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #DAD7CD;
}

/* HEADER / NAVBAR */
.navbar {
    background: #344E41;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(52,78,65,0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px;
    width: auto;
}

/* MENÚ PC */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu > li > a {
    text-decoration: none;
    color: #DAD7CD;
    font-weight: 600;
    transition: all 0.3s;
    padding: 0.5rem 0;
    display: inline-block;
    font-size: 1rem;
}

.nav-menu > li > a:hover {
    color: #A3B18A;
}

/* Flecha dropdown PC */
.dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown > a::after {
    content: "▼";
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.dropdown:hover > a::after {
    transform: rotate(180deg);
}

/* DROPDOWN PC */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #3A5A40;
    width: 480px;
    max-width: 85vw;
    list-style: none;
    border-radius: 12px;
    padding: 0.8rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 9999;
    border: 1px solid #A3B18A;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1200px) {
    .dropdown-menu {
        left: auto;
        right: 20px;
        transform: none;
    }
}

.dropdown-menu li {
    padding: 0;
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.2rem;
    text-decoration: none;
    color: #DAD7CD;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: #344E41;
    border-left-color: #A3B18A;
}

.tour-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.tour-title {
    font-weight: 700;
    color: #A3B18A;
    font-size: 0.9rem;
    flex: 1;
}

.tour-meta {
    text-align: right;
    min-width: 70px;
}

.tour-duracion, .tour-precio {
    font-size: 0.8rem;
    font-weight: bold;
    color: #A3B18A;
    display: block;
}

.tour-detail {
    font-size: 0.7rem;
    color: #DAD7CD;
    margin-top: 4px;
    display: block;
}

/* ========== BOTÓN HAMBURGUESA (oculto en PC) ========== */
.hamburger {
    display: none;
}

/* ========== MENÚ MÓVIL (oculto en PC) ========== */
.mobile-menu {
    display: none;
}

.menu-overlay {
    display: none;
}

/* ========== SOLO EN MÓVIL ========== */
@media (max-width: 768px) {
    .nav-menu {
        display: none !important;
    }
    
    .hamburger {
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
        z-index: 1001;
    }
    
    .hamburger span {
        width: 28px;
        height: 3px;
        background: #DAD7CD;
        transition: all 0.3s ease;
        border-radius: 3px;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .navbar {
        padding: 1rem;
    }
    
    .nav-container {
        justify-content: space-between;
        width: 100%;
    }
    
    /* Mostrar menú móvil SOLO en móvil */
    .mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: #344E41;
        z-index: 1000;
        transition: right 0.3s ease;
        padding: 5rem 1.2rem 2rem 1.2rem;
        box-shadow: -5px 0 15px rgba(0,0,0,0.3);
        overflow-y: auto;
    }
    
    .mobile-menu.active {
        right: 0;
    }
    
    .mobile-menu::-webkit-scrollbar {
        width: 4px;
    }
    
    .mobile-menu::-webkit-scrollbar-track {
        background: #3A5A40;
    }
    
    .mobile-menu::-webkit-scrollbar-thumb {
        background: #A3B18A;
        border-radius: 4px;
    }
    
    .menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu > ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
    }
    
    .mobile-menu > ul > li > a {
        text-decoration: none;
        color: #DAD7CD;
        font-size: 1.2rem;
        font-weight: 600;
        display: block;
        padding: 0.5rem 0;
        transition: all 0.3s;
    }
    
    .mobile-menu > ul > li > a:hover {
        color: #A3B18A;
        padding-left: 0.5rem;
    }
    
    .mobile-section-title {
        color: #DAD7CD;
        font-size: 1.2rem;
        font-weight: 600;
        padding: 0.5rem 0;
        margin-bottom: 1rem;
        border-bottom: 2px solid #A3B18A;
    }
    
    .mobile-tours-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .mobile-tour-btn {
        display: block;
        background: rgba(58, 90, 64, 0.6);
        border: 1px solid #A3B18A;
        border-radius: 12px;
        padding: 0.8rem 1rem;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .mobile-tour-btn:hover {
        background: #3A5A40;
        transform: translateX(5px);
        border-color: #DAD7CD;
    }
    
    .mobile-tour-btn:active {
        transform: scale(0.98);
    }
    
    .mobile-tour-content {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    
    .mobile-tour-header {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .mobile-tour-title {
        font-weight: 700;
        color: #A3B18A;
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .mobile-tour-meta {
        font-size: 0.7rem;
        color: #DAD7CD;
        font-weight: bold;
        background: rgba(0,0,0,0.3);
        padding: 2px 8px;
        border-radius: 20px;
    }
    
    .mobile-tour-detail {
        font-size: 0.7rem;
        color: #DAD7CD;
        line-height: 1.4;
    }
    
    .mobile-tour-arrow {
        text-align: right;
        margin-top: 6px;
        font-size: 0.8rem;
        color: #A3B18A;
        transition: all 0.3s ease;
    }
    
    .mobile-tour-btn:hover .mobile-tour-arrow {
        transform: translateX(5px);
        color: #DAD7CD;
    }
}









/* HERO SECTION */
.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Imagen de fondo */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Overlay - medio verde sutil */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(52, 78, 65, 0.4); /* --verde-muy-oscuro con opacidad 40% */
    z-index: 2;
}

/* Contenido */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 2rem;
    color: white;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo */
.hero-logo {
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-logo svg {
    width: 50px;
    height: 50px;
}

/* Títulos con sombras */
.hero-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #A3B18A;
    margin-bottom: 1rem;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.hero-title span {
    color: #A3B18A;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: white;
    margin-bottom: 2rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

/* Botones con sombra */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn-primary {
    display: inline-block;
    background: #A3B18A;
    color: #344E41;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    background: #DAD7CD;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
    display: inline-block;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #A3B18A;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: rgba(163, 177, 138, 0.3);
    transform: translateY(-3px);
    border-color: #DAD7CD;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Características con sombra */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 40px;
    backdrop-filter: blur(4px);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.feature span:first-child {
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-features {
        gap: 0.8rem;
    }
    
    .feature {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-logo {
        width: 60px;
        height: 60px;
    }
    
    .hero-logo svg {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.7rem;
        letter-spacing: 3px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 80%;
        text-align: center;
    }
}









/* SECCIÓN ACERCA DE NOSOTROS */
.about-us {
    padding: 6rem 2rem;
    background: var(--beige, #DAD7CD);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

/* Contenido izquierdo */
.about-content {
    flex: 1;
    min-width: 280px;
}

.about-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.badge-line {
    width: 40px;
    height: 2px;
    background: var(--verde-claro, #A3B18A);
}

.badge-text {
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--verde-oscuro, #3A5A40);
    font-weight: 600;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--verde-muy-oscuro, #344E41);
}

.about-title span {
    color: var(--verde-medio, #588157);
}

.about-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--verde-oscuro, #3A5A40);
    margin-bottom: 1.2rem;
}

.about-description strong {
    color: var(--verde-medio, #588157);
    font-weight: 700;
}

/* Características */
.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0 2rem 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--verde-muy-oscuro, #344E41);
}

/* Botón */
.about-btn {
    display: inline-block;
    background: transparent;
    color: var(--verde-medio, #588157);
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid var(--verde-medio, #588157);
    cursor: pointer;
    letter-spacing: 1px;
}

.about-btn:hover {
    background: var(--verde-medio, #588157);
    color: var(--beige, #DAD7CD);
    transform: translateX(5px);
}

/* Imagen derecha */
.about-image {
    flex: 1;
    min-width: 280px;
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.2);
}

.about-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.image-wrapper:hover .about-img {
    transform: scale(1.03);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 78, 65, 0.2), rgba(88, 129, 87, 0.1));
    pointer-events: none;
}

/* Tarjeta de experiencia flotante */
.experience-card {
    position: absolute;
    bottom: -25px;
    right: 20px;
    background: var(--verde-muy-oscuro, #344E41);
    padding: 1.2rem 1.8rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--verde-claro, #A3B18A);
}

.experience-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--verde-claro, #A3B18A);
    line-height: 1;
}

.experience-text {
    font-size: 0.7rem;
    color: var(--beige, #DAD7CD);
    margin-top: 0.3rem;
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 968px) {
    .about-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-img {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .about-us {
        padding: 4rem 1.5rem;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-description {
        font-size: 0.9rem;
    }
    
    .about-features {
        gap: 1rem;
    }
    
    .feature-text {
        font-size: 0.8rem;
    }
    
    .experience-card {
        padding: 0.8rem 1.2rem;
        bottom: -15px;
        right: 10px;
    }
    
    .experience-number {
        font-size: 1.5rem;
    }
    
    .experience-text {
        font-size: 0.6rem;
    }
    
    .about-img {
        height: 400px;
    }
}










/* SECCIÓN VALORES - Munay Maras ATV */
.values-section {
    padding: 5rem 2rem;
    background: white;
    position: relative;
    overflow: hidden;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Encabezado */
.values-header {
    text-align: center;
    margin-bottom: 4rem;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.deco-line {
    width: 50px;
    height: 1px;
    background: var(--verde-claro, #A3B18A);
}

.deco-dot {
    width: 6px;
    height: 6px;
    background: var(--verde-medio, #588157);
    border-radius: 50%;
}

.values-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--verde-muy-oscuro, #344E41);
    margin-bottom: 1rem;
}

.values-title span {
    color: var(--verde-medio, #588157);
    position: relative;
    display: inline-block;
}

.values-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--verde-claro, #A3B18A);
    border-radius: 3px;
}

.values-subtitle {
    font-size: 1rem;
    color: var(--verde-oscuro, #3A5A40);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.values-subtitle strong {
    color: var(--verde-medio, #588157);
}

/* Grid de 3 columnas */
.values-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

/* Tarjeta individual */
.value-card {
    flex: 1;
    min-width: 260px;
    max-width: 320px;
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(163, 177, 138, 0.2);
    box-shadow: 0 8px 20px -10px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--verde-claro, #A3B18A);
    box-shadow: 0 20px 35px -12px rgba(52, 78, 65, 0.15);
}

/* Icono SVG */
.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: rgba(163, 177, 138, 0.12);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.value-card:hover .card-icon {
    background: var(--verde-claro, #A3B18A);
}

.card-icon svg {
    width: 34px;
    height: 34px;
    stroke: var(--verde-medio, #588157);
    transition: all 0.3s ease;
}

.value-card:hover .card-icon svg {
    stroke: white;
}

/* Título */
.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--verde-muy-oscuro, #344E41);
    margin-bottom: 0.8rem;
}

/* Texto */
.card-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--verde-oscuro, #3A5A40);
}

.card-text strong {
    color: var(--verde-medio, #588157);
    font-weight: 700;
}

/* Línea hover */
.card-hover {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--verde-claro, #A3B18A);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.value-card:hover .card-hover {
    width: 50px;
}

/* Footer decoración */
.values-footer {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.footer-dots {
    display: flex;
    gap: 1rem;
}

.footer-dots span {
    width: 6px;
    height: 6px;
    background: var(--verde-claro, #A3B18A);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-dots span:nth-child(1) { opacity: 1; transform: scale(1.2); }
.footer-dots span:nth-child(2) { opacity: 0.7; }
.footer-dots span:nth-child(3) { opacity: 0.5; }
.footer-dots span:nth-child(4) { opacity: 0.3; }
.footer-dots span:nth-child(5) { opacity: 0.15; }

/* Responsive */
@media (max-width: 768px) {
    .values-section {
        padding: 3rem 1.5rem;
    }
    
    .values-title {
        font-size: 1.8rem;
    }
    
    .values-subtitle {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    
    .values-grid {
        gap: 1.5rem;
    }
    
    .value-card {
        min-width: 100%;
        max-width: 100%;
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 55px;
        height: 55px;
    }
    
    .card-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .footer-dots {
        gap: 0.6rem;
    }
}

@media (max-width: 480px) {
    .values-title {
        font-size: 1.5rem;
    }
    
    .header-decoration .deco-line {
        width: 30px;
    }
}













:root {
    --verde-claro: #A3B18A;
    --beige: #DAD7CD;
    --verde-medio: #588157;
    --verde-oscuro: #3A5A40;
    --verde-muy-oscuro: #344E41;
}

/* SECCIÓN CARRUSEL CON TEXTO LATERAL */
.featured-gallery {
    padding: 4rem 2rem;
    background: rgb(219, 219, 219);
}

.gallery-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

/* Lado izquierdo - Texto */
.gallery-text {
    flex: 1;
    min-width: 280px;
}

.text-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.badge-icon {
    font-size: 1.2rem;
}

.text-badge span:last-child {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--verde-medio, #588157);
    font-weight: 600;
}

.text-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--verde-muy-oscuro, #344E41);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.text-title span {
    color: var(--verde-medio, #588157);
}

.text-description {
    font-size: 0.9rem;
    color: var(--verde-oscuro, #3A5A40);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Testimonio */
.testimonial-box {
    background: #F8F8F4;
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    border-left: 4px solid var(--verde-claro, #A3B18A);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--verde-claro, #A3B18A);
    font-family: serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.testimonial-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--verde-muy-oscuro, #344E41);
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--verde-medio, #588157);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
}

.author-info h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--verde-muy-oscuro, #344E41);
}

.author-info span {
    font-size: 0.7rem;
    color: var(--verde-medio, #588157);
}

/* Indicadores */
.photo-indicators {
    display: flex;
    gap: 0.5rem;
}

.photo-dot {
    width: 8px;
    height: 8px;
    background: #DAD7CD;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.photo-dot.active {
    background: var(--verde-medio, #588157);
    transform: scale(1.2);
}

/* Lado derecho - Carrusel */
.gallery-carousel {
    flex: 1;
    min-width: 300px;
}

.carousel-frame {
    background: transparent;
    border-radius: 24px;
    padding: 0;
    box-shadow: none;
    overflow: hidden;
}

.carousel-images {
    display: flex;
    transition: transform 0.4s ease-in-out;
    border-radius: 24px;
}

.carousel-item {
    flex: 0 0 100%;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(52, 78, 65, 0.8));
    padding: 1rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    border-radius: 0 0 24px 24px;
}

/* Controles del carrusel */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.carousel-arrow {
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid rgba(163, 177, 138, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.carousel-arrow svg {
    width: 18px;
    height: 18px;
    stroke: var(--verde-medio, #588157);
}

.carousel-arrow:hover {
    background: var(--verde-medio, #588157);
    border-color: var(--verde-medio, #588157);
}

.carousel-arrow:hover svg {
    stroke: white;
}

.counter {
    font-size: 0.85rem;
    color: var(--verde-oscuro, #3A5A40);
    font-weight: 500;
    background: transparent;
    padding: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .featured-gallery {
        padding: 3rem 1.5rem;
    }
    
    .gallery-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .text-title {
        font-size: 1.6rem;
    }
    
    .carousel-item img {
        height: 250px;
    }
    
    .testimonial-box {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .text-title {
        font-size: 1.4rem;
    }
    
    .carousel-item img {
        height: 200px;
    }
    
    .carousel-controls {
        gap: 1rem;
    }
    
    .carousel-arrow {
        width: 34px;
        height: 34px;
    }
}










:root {
    --verde-claro: #A3B18A;
    --beige: #DAD7CD;
    --verde-medio: #588157;
    --verde-oscuro: #3A5A40;
    --verde-muy-oscuro: #344E41;
}

.google-review-section {
    padding: 5rem 2rem;
    background: linear-gradient(145deg, #FFFFFF 0%, #F8F8F4 100%);
}

.review-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.review-content {
    flex: 1;
    min-width: 280px;
}

.section-badge {
    display: inline-block;
    background: rgba(88, 129, 87, 0.1);
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--verde-medio);
    margin-bottom: 1.5rem;
}

.review-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--verde-muy-oscuro);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.review-title span {
    color: var(--verde-medio);
}

.review-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--verde-oscuro);
    margin-bottom: 2rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--verde-oscuro);
}

.feature-icon {
    font-size: 1.2rem;
}

.review-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--verde-muy-oscuro);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    border: none;
    cursor: pointer;
}

.review-button:hover {
    background: var(--verde-medio);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.2);
}

.arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.review-button:hover .arrow-icon {
    transform: translateX(5px);
}

.review-note {
    font-size: 0.75rem;
    color: var(--verde-oscuro);
    opacity: 0.7;
}

/* Lado derecho - Tarjeta visual */
.review-card {
    flex: 1;
    min-width: 280px;
    background: white;
    border-radius: 28px;
    padding: 1.8rem;
    box-shadow: 0 20px 35px -12px rgba(52, 78, 65, 0.15);
    border: 1px solid rgba(163, 177, 138, 0.2);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}

.stars {
    color: #FFB800;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.card-badge {
    background: var(--verde-claro);
    color: var(--verde-muy-oscuro);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.card-testimonial {
    margin-bottom: 1.5rem;
}

.testimonial-phrase {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--verde-oscuro);
    font-style: italic;
    margin-bottom: 1.2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.author-icon {
    width: 40px;
    height: 40px;
    background: var(--verde-medio);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-details strong {
    font-size: 0.85rem;
    color: var(--verde-muy-oscuro);
}

.author-details span {
    font-size: 0.7rem;
    color: var(--verde-medio);
}

.card-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(163, 177, 138, 0.3);
    font-size: 0.7rem;
    color: var(--verde-oscuro);
}

/* Responsive */
@media (max-width: 768px) {
    .google-review-section {
        padding: 3rem 1.5rem;
    }
    
    .review-title {
        font-size: 1.8rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .features-list {
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .review-title {
        font-size: 1.5rem;
    }
    
    .review-button {
        width: 100%;
        justify-content: center;
    }
}











/* SECCIÓN ELIGE TU TOUR + FORMULARIO */
.choose-tour-section {
    padding: 5rem 2rem;
    background: white;
    overflow-x: hidden;
    width: 100%;
}

.tour-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    width: 100%;
}

/* Lado izquierdo - Carrusel */
.tour-carousel {
    flex: 1;
    min-width: 280px;
    max-width: 100%;
    overflow-x: hidden;
}

.carousel-header {
    margin-bottom: 2rem;
}

.carousel-badge {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #588157;
    font-weight: 600;
    margin-bottom: 1rem;
}

.carousel-title {
    font-size: 2rem;
    font-weight: 800;
    color: #344E41;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.carousel-title span {
    color: #588157;
}

.carousel-description {
    font-size: 0.9rem;
    color: #3A5A40;
    line-height: 1.6;
}

/* Carrusel de tarjetas */
.tour-cards-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.tour-cards-wrapper {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
    width: 100%;
}

.tour-card-item {
    flex: 0 0 100%;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(163, 177, 138, 0.2);
    box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.08);
    width: 100%;
    box-sizing: border-box;
}

.tour-card-item.active {
    border-color: #A3B18A;
    box-shadow: 0 15px 30px -12px rgba(52, 78, 65, 0.15);
}

.tour-card-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tour-card-item:hover .tour-card-image img {
    transform: scale(1.05);
}

.tour-card-content {
    padding: 1.5rem;
}

.tour-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #344E41;
    margin-bottom: 0.8rem;
}

.tour-card-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tour-duration {
    font-size: 0.8rem;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    background: #F8F8F4;
    font-weight: 600;
    color: #588157;
}

.tour-price {
    font-size: 0.8rem;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    background: #F8F8F4;
    font-weight: 600;
    color: #3A5A40;
}

.tour-card-desc {
    font-size: 0.85rem;
    color: #3A5A40;
    line-height: 1.5;
}

/* Controles del carrusel */
.carousel-controls-tour {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.tour-prev, .tour-next {
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid rgba(163, 177, 138, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tour-prev svg, .tour-next svg {
    width: 18px;
    height: 18px;
    stroke: #588157;
}

.tour-prev:hover, .tour-next:hover {
    background: #588157;
    border-color: #588157;
}

.tour-prev:hover svg, .tour-next:hover svg {
    stroke: white;
}

.tour-dots {
    display: flex;
    gap: 0.5rem;
}

.tour-dot {
    width: 8px;
    height: 8px;
    background: #DAD7CD;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tour-dot.active {
    background: #588157;
    transform: scale(1.2);
}

/* Lado derecho - Formulario */
.booking-form {
    flex: 1;
    min-width: 280px;
    max-width: 100%;
    background: #F8F8F4;
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 20px 35px -12px rgba(52, 78, 65, 0.1);
    box-sizing: border-box;
    overflow-x: hidden;
}

.form-header {
    text-align: center;
    margin-bottom: 1.8rem;
}

.form-badge {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #588157;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #344E41;
    margin-bottom: 0.5rem;
}

.form-header p {
    font-size: 0.85rem;
    color: #3A5A40;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #3A5A40;
    margin-bottom: 0.3rem;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 1px solid rgba(163, 177, 138, 0.3);
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.9rem;
    background: white;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: #588157;
    box-shadow: 0 0 0 3px rgba(88, 129, 87, 0.1);
}

.form-row {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.form-row .form-group {
    flex: 1;
    min-width: 0;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: #344E41;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    width: 100%;
    box-sizing: border-box;
}

.submit-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    background: #588157;
    transform: translateY(-2px);
}

.submit-btn:hover svg {
    transform: translateX(5px);
}

.form-note {
    font-size: 0.7rem;
    color: #3A5A40;
    text-align: center;
    margin-top: 0.8rem;
    opacity: 0.7;
}

/* ========== RESPONSIVE CORREGIDO ========== */
@media (max-width: 968px) {
    .choose-tour-section {
        padding: 3rem 1.5rem;
    }
    
    .tour-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .carousel-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .carousel-badge {
        display: block;
        text-align: center;
    }
    
    .carousel-description {
        text-align: center;
        font-size: 0.85rem;
    }
    
    .tour-card-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .choose-tour-section {
        padding: 2rem 1rem;
    }
    
    .tour-carousel {
        min-width: 100%;
        width: 100%;
    }
    
    .carousel-title {
        font-size: 1.5rem;
    }
    
    .tour-card-image {
        height: 280px;
    }
    
    .tour-card-content {
        padding: 1.2rem;
    }
    
    .tour-card-title {
        font-size: 1.1rem;
    }
    
    .tour-card-desc {
        font-size: 0.8rem;
    }
    
    /* Formulario ocupa todo el ancho sin sobresalir */
    .booking-form {
        min-width: 100%;
        width: 100%;
        padding: 1.5rem;
        margin: 0;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-row .form-group {
        width: 100%;
    }
    
    .form-header h3 {
        font-size: 1.3rem;
    }
    
    .carousel-controls-tour {
        gap: 1rem;
    }
    
    .tour-prev, .tour-next {
        width: 36px;
        height: 36px;
    }
    
    .tour-prev svg, .tour-next svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .choose-tour-section {
        padding: 1rem;
    }
    
    .carousel-title {
        font-size: 1.3rem;
    }
    
    .carousel-description {
        font-size: 0.8rem;
    }
    
    .tour-card-image {
        height: 250px;
    }
    
    .tour-card-title {
        font-size: 1rem;
    }
    
    .tour-card-content {
        padding: 1rem;
    }
    
    .tour-duration, .tour-price {
        font-size: 0.7rem;
        padding: 0.15rem 0.6rem;
    }
    
    .tour-card-desc {
        font-size: 0.75rem;
    }
    
    .booking-form {
        padding: 1rem;
    }
    
    .form-header h3 {
        font-size: 1.2rem;
    }
    
    .form-header p {
        font-size: 0.75rem;
    }
    
    .form-group label {
        font-size: 0.7rem;
    }
    
    .form-group input, 
    .form-group select, 
    .form-group textarea {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .submit-btn {
        padding: 0.7rem;
        font-size: 0.85rem;
    }
    
    .tour-prev, .tour-next {
        width: 32px;
        height: 32px;
    }
    
    .tour-dot {
        width: 6px;
        height: 6px;
    }
}












/* FOOTER */
.footer {
    background: var(--verde-muy-oscuro, #344E41);
    color: var(--beige, #DAD7CD);
    padding: 4rem 2rem 2rem;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Fila 1 - Logo, enlaces, tours, contacto */
.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(163, 177, 138, 0.2);
}

.footer-brand {
    flex: 2;
    min-width: 250px;
}

.footer-logo {
    height: 70px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer-brand-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--verde-claro, #A3B18A);
    margin-bottom: 0.8rem;
}

.footer-brand-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--beige, #DAD7CD);
    opacity: 0.8;
    max-width: 300px;
}

.footer-links, .footer-tours, .footer-contact {
    flex: 1;
    min-width: 150px;
}

.footer-links h4, .footer-tours h4, .footer-contact h4, .social-links h4, .payment-methods h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--verde-claro, #A3B18A);
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
}

.footer-links h4::after, .footer-tours h4::after, .footer-contact h4::after, .social-links h4::after, .payment-methods h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--verde-claro, #A3B18A);
    border-radius: 2px;
}

.footer-links ul, .footer-tours ul, .footer-contact ul {
    list-style: none;
}

.footer-links li, .footer-tours li {
    margin-bottom: 0.7rem;
}

.footer-links a, .footer-tours a {
    text-decoration: none;
    color: var(--beige, #DAD7CD);
    font-size: 0.85rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover, .footer-tours a:hover {
    opacity: 1;
    color: var(--verde-claro, #A3B18A);
    padding-left: 5px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    color: var(--beige, #DAD7CD);
    opacity: 0.8;
}

.contact-icon {
    font-size: 1rem;
    min-width: 20px;
}

/* Fila 2 - Redes sociales y pagos */
.footer-middle {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(163, 177, 138, 0.2);
}

.social-links, .payment-methods {
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(163, 177, 138, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--beige, #DAD7CD);
}

.social-icon:hover {
    background: var(--verde-claro, #A3B18A);
    transform: translateY(-3px);
}

.social-icon:hover svg {
    stroke: var(--verde-muy-oscuro, #344E41);
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.payment-icon {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.75rem;
    color: var(--beige, #DAD7CD);
    transition: all 0.3s ease;
}

.payment-icon:hover {
    background: var(--verde-claro, #A3B18A);
    color: var(--verde-muy-oscuro, #344E41);
}

/* Fila 3 - Copyright */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    font-size: 0.75rem;
    color: var(--beige, #DAD7CD);
    opacity: 0.7;
}

.copyright p {
    font-size: 0.75rem;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-legal a {
    text-decoration: none;
    color: var(--beige, #DAD7CD);
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: var(--verde-claro, #A3B18A);
}

.separator {
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 968px) {
    .footer-row {
        gap: 1.5rem;
    }
    
    .footer-brand {
        flex: 1;
        min-width: 100%;
        text-align: center;
    }
    
    .footer-brand-desc {
        margin: 0 auto;
    }
    
    .footer-links, .footer-tours, .footer-contact {
        text-align: center;
    }
    
    .footer-links h4::after, .footer-tours h4::after, .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-middle {
        flex-direction: column;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .payment-icons {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }
    
    .footer-links, .footer-tours, .footer-contact {
        min-width: 100%;
    }
    
    .payment-icons {
        gap: 0.5rem;
    }
    
    .payment-icon {
        padding: 0.3rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .footer-legal {
        gap: 0.5rem;
    }
}










/* ========== BOTONES FLOTANTES CIRCULARES ========== */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 4px white, 0 4px 15px rgba(0, 0, 0, 0.15);
    border: none;
    background: white;
    position: relative;
}

.floating-btn svg {
    width: 28px;
    height: 28px;
}

.floating-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 0 4px white, 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Botón WhatsApp */
.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn svg {
    stroke: white;
    fill: none;
}

.whatsapp-btn:hover {
    background: #128C7E;
}

/* Botón Idioma */
.language-btn {
    background: var(--verde-muy-oscuro, #344E41);
}

.language-btn svg {
    stroke: var(--verde-claro, #A3B18A);
}

.language-btn:hover {
    background: var(--verde-medio, #588157);
}

.language-btn:hover svg {
    stroke: white;
}

/* Efecto sutil de pulso en WhatsApp */
.whatsapp-btn {
    animation: pulse-wa 2s infinite;
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 4px white, 0 4px 15px rgba(0, 0, 0, 0.15);
    }
    70% {
        box-shadow: 0 0 0 4px white, 0 0 0 8px rgba(37, 211, 102, 0.3);
    }
    100% {
        box-shadow: 0 0 0 4px white, 0 4px 15px rgba(0, 0, 0, 0.15);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 1rem;
        right: 1rem;
        gap: 0.8rem;
    }
    
    .floating-btn {
        width: 48px;
        height: 48px;
    }
    
    .floating-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .floating-btn {
        box-shadow: 0 0 0 3px white, 0 4px 12px rgba(0, 0, 0, 0.15);
    }
}

@media (max-width: 480px) {
    .floating-buttons {
        bottom: 0.8rem;
        right: 0.8rem;
    }
    
    .floating-btn {
        width: 42px;
        height: 42px;
    }
    
    .floating-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .floating-btn {
        box-shadow: 0 0 0 2px white, 0 4px 12px rgba(0, 0, 0, 0.15);
    }
}









/* SECCIÓN UBICACIÓN + FORMULARIO */
.location-form-section {
    padding: 5rem 2rem;
    background: white;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

/* Lado izquierdo - Mapa */
.location-map {
    flex: 1;
    min-width: 280px;
}

.map-header {
    margin-bottom: 2rem;
}

.map-badge {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #588157;
    font-weight: 600;
    margin-bottom: 1rem;
}

.map-title {
    font-size: 2rem;
    font-weight: 800;
    color: #344E41;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.map-title span {
    color: #588157;
}

.map-description {
    font-size: 0.9rem;
    color: #3A5A40;
    line-height: 1.6;
}

.map-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 30px -12px rgba(52, 78, 65, 0.15);
    margin-bottom: 1.5rem;
}

.map-wrapper iframe {
    width: 100%;
    height: 350px;
    display: block;
}

/* Información adicional */
.map-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.info-card {
    flex: 1;
    min-width: 120px;
    background: #F8F8F4;
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-icon {
    font-size: 1.5rem;
}

.info-text h4 {
    font-size: 0.75rem;
    font-weight: 700;
    color: #588157;
    margin-bottom: 0.2rem;
}

.info-text p {
    font-size: 0.7rem;
    color: #3A5A40;
}

/* Lado derecho - Formulario */
.location-form {
    flex: 1;
    min-width: 300px;
    background: #F8F8F4;
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 20px 35px -12px rgba(52, 78, 65, 0.1);
}

.location-form .form-header {
    text-align: center;
    margin-bottom: 1.8rem;
}

.location-form .form-badge {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #588157;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.location-form .form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #344E41;
    margin-bottom: 0.5rem;
}

.location-form .form-header p {
    font-size: 0.85rem;
    color: #3A5A40;
}

.location-form .form-fields {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.location-form .form-group {
    display: flex;
    flex-direction: column;
}

.location-form .form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #3A5A40;
    margin-bottom: 0.3rem;
}

.location-form .form-group input,
.location-form .form-group select,
.location-form .form-group textarea {
    padding: 0.8rem 1rem;
    border: 1px solid rgba(163, 177, 138, 0.3);
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.9rem;
    background: white;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.location-form .form-group input:focus,
.location-form .form-group select:focus,
.location-form .form-group textarea:focus {
    outline: none;
    border-color: #588157;
    box-shadow: 0 0 0 3px rgba(88, 129, 87, 0.1);
}

.location-form .form-row {
    display: flex;
    gap: 1rem;
}

.location-form .form-row .form-group {
    flex: 1;
}

.location-form .submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: #344E41;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    width: 100%;
}

.location-form .submit-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.location-form .submit-btn:hover {
    background: #588157;
    transform: translateY(-2px);
}

.location-form .submit-btn:hover svg {
    transform: translateX(5px);
}

.location-form .form-note {
    font-size: 0.7rem;
    color: #3A5A40;
    text-align: center;
    margin-top: 0.8rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 968px) {
    .location-form-section {
        padding: 3rem 1.5rem;
    }
    
    .location-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .map-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .map-badge {
        display: block;
        text-align: center;
    }
    
    .map-description {
        text-align: center;
        font-size: 0.85rem;
    }
    
    .map-wrapper iframe {
        height: 300px;
    }
    
    .map-info {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .location-form-section {
        padding: 2rem 1rem;
    }
    
    .map-title {
        font-size: 1.5rem;
    }
    
    .map-wrapper iframe {
        height: 250px;
    }
    
    .info-card {
        min-width: 100%;
    }
    
    .location-form {
        padding: 1.5rem;
    }
    
    .location-form .form-header h3 {
        font-size: 1.3rem;
    }
    
    .location-form .form-row {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .location-form-section {
        padding: 1.5rem 0.8rem;
    }
    
    .map-title {
        font-size: 1.3rem;
    }
    
    .map-wrapper iframe {
        height: 200px;
    }
    
    .location-form {
        padding: 1.2rem;
    }
    
    .location-form .form-header h3 {
        font-size: 1.2rem;
    }
    
    .location-form .form-group input,
    .location-form .form-group select,
    .location-form .form-group textarea {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .location-form .submit-btn {
        padding: 0.7rem;
        font-size: 0.85rem;
    }
}













/* SECCIÓN NOSOTROS - ATV en Maras */
.about-atv-section {
    padding: 5rem 2rem;
    background: white;
    position: relative;
}

.about-atv-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Encabezado */
.about-atv-header {
    text-align: center;
    margin-bottom: 3rem;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.deco-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #A3B18A, transparent);
}

.deco-icon {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.about-atv-title {
    font-size: 3rem;
    font-weight: 800;
    color: #344E41;
    margin-bottom: 1rem;
}

.about-atv-title span {
    color: #588157;
    position: relative;
    display: inline-block;
}

.about-atv-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #A3B18A;
    border-radius: 3px;
}

.about-atv-subtitle {
    font-size: 1.1rem;
    color: #3A5A40;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Introducción */
.about-atv-intro {
    max-width: 800px;
    margin: 0 auto 4rem auto;
    text-align: center;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #3A5A40;
}

.intro-text strong {
    color: #588157;
}

/* Sección de características */
.about-atv-features {
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: #344E41;
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-subtitle span {
    color: #588157;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.feature-block {
    flex: 1;
    min-width: 220px;
    background: #F8F8F4;
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(163, 177, 138, 0.2);
}

.feature-block:hover {
    transform: translateY(-8px);
    border-color: #A3B18A;
    box-shadow: 0 15px 30px -12px rgba(52, 78, 65, 0.15);
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #A3B18A;
    opacity: 0.5;
    margin-bottom: 1rem;
    font-family: monospace;
}

.feature-block h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #344E41;
    margin-bottom: 0.8rem;
}

.feature-block p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #3A5A40;
}

/* Historia */
.about-atv-story {
    background: #F8F8F4;
    border-radius: 28px;
    padding: 3rem;
    margin-bottom: 4rem;
    text-align: center;
    border-left: 4px solid #A3B18A;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #3A5A40;
    margin-bottom: 1.2rem;
}

.story-content p:last-child {
    margin-bottom: 0;
}

/* CTA */
.about-atv-cta {
    text-align: center;
    background: #344E41;
    border-radius: 28px;
    padding: 3rem 2rem;
    color: white;
}

.about-atv-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-atv-cta p {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #A3B18A;
    color: #344E41;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #588157;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .about-atv-section {
        padding: 3rem 1.5rem;
    }
    
    .about-atv-title {
        font-size: 2rem;
    }
    
    .about-atv-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .section-subtitle {
        font-size: 1.6rem;
    }
    
    .features-grid {
        gap: 1.2rem;
    }
    
    .feature-block {
        min-width: 100%;
        padding: 1.5rem;
    }
    
    .feature-number {
        font-size: 2rem;
    }
    
    .about-atv-story {
        padding: 2rem;
    }
    
    .about-atv-cta {
        padding: 2rem 1.5rem;
    }
    
    .about-atv-cta h3 {
        font-size: 1.4rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .about-atv-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 1.4rem;
    }
    
    .header-decoration .deco-line {
        width: 30px;
    }
    
    .deco-icon {
        font-size: 1.2rem;
    }
    
    .about-atv-cta h3 {
        font-size: 1.2rem;
    }
}










/* PÁGINA TOUR - Paseo al Mirador del Valle */
.tour-page {
    padding: 4rem 2rem;
    background: white;
}

.tour-page-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Encabezado */
.tour-header {
    margin-bottom: 2.5rem;
}

.tour-breadcrumb {
    font-size: 0.8rem;
    color: #3A5A40;
    margin-bottom: 1rem;
}

.tour-breadcrumb a {
    color: #588157;
    text-decoration: none;
}

.tour-breadcrumb a:hover {
    text-decoration: underline;
}

.tour-breadcrumb span {
    color: #A3B18A;
}

.tour-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #344E41;
    margin-bottom: 0.5rem;
}

.tour-title span {
    color: #588157;
}

.tour-subtitle {
    font-size: 1rem;
    color: #3A5A40;
}

/* Grid principal */
.tour-main-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.tour-image {
    flex: 1.5;
    min-width: 280px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 30px -12px rgba(52, 78, 65, 0.2);
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 350px;
}

.image-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(52, 78, 65, 0.9);
    backdrop-filter: blur(4px);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tour-quick-info {
    flex: 1;
    min-width: 280px;
    background: #F8F8F4;
    border-radius: 24px;
    padding: 1.8rem;
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.05);
}

.price-box {
    text-align: center;
    background: #344E41;
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.price-label {
    display: block;
    font-size: 0.8rem;
    color: #A3B18A;
    font-weight: 600;
}

.price-value {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
}

.quick-details {
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(163, 177, 138, 0.2);
}

.detail-icon {
    font-size: 1.2rem;
}

.detail-text {
    font-size: 0.85rem;
    color: #3A5A40;
}

.detail-text strong {
    color: #344E41;
}

.book-now-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: #588157;
    color: white;
    padding: 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.book-now-btn svg {
    width: 18px;
    height: 18px;
    stroke: white;
    transition: transform 0.3s ease;
}

.book-now-btn:hover {
    background: #344E41;
    transform: translateY(-3px);
}

.book-now-btn:hover svg {
    transform: translateX(5px);
}

/* Descripción */
.tour-description {
    margin-bottom: 3rem;
}

.tour-description h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #344E41;
    margin-bottom: 1rem;
}

.tour-description p {
    font-size: 1rem;
    line-height: 1.7;
    color: #3A5A40;
    margin-bottom: 1rem;
}

/* Incluye / No incluye */
.tour-includes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.includes-box, .not-includes-box {
    flex: 1;
    min-width: 280px;
    background: #F8F8F4;
    border-radius: 24px;
    padding: 1.8rem;
}

.includes-box {
    border-left: 4px solid #588157;
}

.not-includes-box {
    border-left: 4px solid #A3B18A;
}

.box-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.box-icon {
    font-size: 1.5rem;
}

.box-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #344E41;
}

.includes-list, .not-includes-list {
    list-style: none;
}

.includes-list li, .not-includes-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(163, 177, 138, 0.2);
    font-size: 0.9rem;
    color: #3A5A40;
}

.includes-list li:last-child, .not-includes-list li:last-child {
    border-bottom: none;
}

/* Itinerario */
.tour-itinerary {
    margin-bottom: 3rem;
}

.tour-itinerary h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #344E41;
    margin-bottom: 1.5rem;
}

.itinerary-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.step {
    flex: 1;
    min-width: 200px;
    display: flex;
    gap: 1rem;
    background: #F8F8F4;
    border-radius: 20px;
    padding: 1.2rem;
}

.step-number {
    width: 36px;
    height: 36px;
    background: #588157;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #344E41;
    margin-bottom: 0.3rem;
}

.step-content p {
    font-size: 0.8rem;
    color: #3A5A40;
    line-height: 1.5;
}

/* Recomendaciones */
.tour-recommendations {
    background: #F8F8F4;
    border-radius: 24px;
    padding: 1.8rem;
    margin-bottom: 2rem;
}

.tour-recommendations h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #344E41;
    margin-bottom: 1rem;
}

.rec-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.rec-item {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    color: #3A5A40;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Botón final */
.tour-footer-btn {
    text-align: center;
}

.final-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #344E41;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.final-book-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.final-book-btn:hover {
    background: #588157;
    transform: translateY(-3px);
}

.final-book-btn:hover svg {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .tour-page {
        padding: 2rem 1rem;
    }
    
    .tour-title {
        font-size: 1.8rem;
    }
    
    .tour-main-grid {
        flex-direction: column;
    }
    
    .tour-image {
        min-height: 250px;
    }
    
    .tour-image img {
        min-height: 250px;
    }
    
    .itinerary-steps {
        flex-direction: column;
    }
    
    .tour-includes-grid {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .tour-title {
        font-size: 1.5rem;
    }
    
    .price-value {
        font-size: 1.8rem;
    }
    
    .box-header h3 {
        font-size: 1.1rem;
    }
    
    .final-book-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* DATOS IMPORTANTES - Tarjetas de información */
.tour-info-extra {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-card-extra {
    flex: 1;
    min-width: 250px;
    display: flex;
    gap: 1rem;
    background: #F8F8F4;
    border-radius: 20px;
    padding: 1.2rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    border: 1px solid rgba(163, 177, 138, 0.2);
}

.info-card-extra:hover {
    transform: translateY(-5px);
    border-color: #A3B18A;
    box-shadow: 0 8px 20px -10px rgba(52, 78, 65, 0.15);
}

.info-icon {
    font-size: 1.8rem;
    min-width: 45px;
    text-align: center;
}

.info-card-extra div {
    flex: 1;
}

.info-card-extra h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #344E41;
    margin-bottom: 0.3rem;
}

.info-card-extra p {
    font-size: 0.8rem;
    color: #3A5A40;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .tour-info-extra {
        gap: 1rem;
    }
    
    .info-card-extra {
        padding: 1rem;
        min-width: 100%;
    }
    
    .info-icon {
        font-size: 1.5rem;
        min-width: 40px;
    }
    
    .info-card-extra h4 {
        font-size: 0.9rem;
    }
    
    .info-card-extra p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .info-card-extra {
        padding: 0.8rem;
    }
    
    .info-icon {
        font-size: 1.3rem;
        min-width: 35px;
    }
}











/* ========== RESTAURAR ESTILOS DEL MENÚ DROPDOWN ========== */
/* Esto fuerza los estilos originales del menú sin modificar el HTML */

.dropdown-menu .tour-info {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 1rem !important;
}

.dropdown-menu .tour-title {
    font-weight: 700 !important;
    color: #A3B18A !important;
    font-size: 0.9rem !important;
    flex: 1 !important;
}

.dropdown-menu .tour-meta {
    text-align: right !important;
    min-width: 70px !important;
}

.dropdown-menu .tour-duracion, 
.dropdown-menu .tour-precio {
    font-size: 0.8rem !important;
    font-weight: bold !important;
    color: #A3B18A !important;
    display: block !important;
}

.dropdown-menu .tour-detail {
    font-size: 0.7rem !important;
    color: #DAD7CD !important;
    margin-top: 4px !important;
    display: block !important;
}

/* Asegurar que el dropdown se vea correctamente */
.dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: #3A5A40 !important;
    width: 480px !important;
    max-width: 85vw !important;
    border-radius: 12px !important;
    padding: 0.8rem 0 !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3) !important;
    z-index: 9999 !important;
    border: 1px solid #A3B18A !important;
}

.dropdown-menu li {
    padding: 0 !important;
}

.dropdown-menu a {
    display: block !important;
    padding: 0.8rem 1.2rem !important;
    color: #DAD7CD !important;
    border-left: 3px solid transparent !important;
}

.dropdown-menu a:hover {
    background: #344E41 !important;
    border-left-color: #A3B18A !important;
}











/* SECCIÓN DE TOURS DESTACADOS */
.featured-tours-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f7f0 0%, #e8ece0 100%);
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

.tours-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* Encabezado de sección */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 2.5rem;
    color: #2c3e2f;
    margin-bottom: 12px;
    font-weight: 700;
}

.section-title span {
    color: #7BA05B;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #5a6e4a;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid de tarjetas */
.tours-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Tarjeta individual */
.tour-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
}

/* Imagen de la tarjeta */
.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: #7BA05B;
    color: white;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.card-badge.grupal {
    background: #E6A157;
}

/* Contenido de la tarjeta */
.card-content {
    padding: 22px;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e2f;
    margin-bottom: 12px;
    line-height: 1.4;
    min-height: 65px;
}

.card-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #7BA05B;
    margin-bottom: 12px;
}

.card-price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #8a9a6e;
}

.card-description {
    color: #5a6e4a;
    font-size: 0.85rem;
    margin-bottom: 16px;
    line-height: 1.4;
}

/* Características del tour */
.card-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.card-features span {
    background: #f0f3e8;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: #4a5c3a;
    font-weight: 500;
}

/* Botón de la tarjeta */
.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #2c3e2f;
    color: white;
    padding: 12px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: fit-content;
}

.card-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.card-btn:hover {
    background: #7BA05B;
    gap: 15px;
}

.card-btn:hover svg {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
    .featured-tours-section {
        padding: 40px 16px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .tours-cards-grid {
        gap: 20px;
    }
    
    .card-title {
        font-size: 1.1rem;
        min-height: auto;
    }
    
    .card-price {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .card-content {
        padding: 18px;
    }
    
    .card-btn {
        width: 100%;
        justify-content: center;
    }
}








/* Estilo para el itinerario */
.tour-description ol {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
    counter-reset: itinerary-counter;
}

.tour-description ol li {
    counter-increment: itinerary-counter;
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
}

.tour-description ol li::before {
    content: counter(itinerary-counter);
    background-color: #e67e22; /* Color principal - puedes cambiarlo al de tu marca */
    color: white;
    font-weight: bold;
    font-size: 0.85rem;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 2px;
}

.tour-description ol li strong {
    color: #2c3e50;
    font-weight: 700;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .tour-description ol li {
        font-size: 0.9rem;
        padding-left: 28px;
        margin-bottom: 14px;
    }
    
    .tour-description ol li::before {
        width: 20px;
        height: 20px;
        font-size: 0.75rem;
        top: 2px;
    }
}










/* Cuadro de duración en cuatrimoto */
.atv-duration-box {
    background: linear-gradient(135deg, #f5f0e6 0%, #e8e0d0 100%);
    border-radius: 16px;
    padding: 15px 20px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 5px solid #e67e22;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
}

.atv-duration-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.atv-icon {
    font-size: 2.8rem;
    background: #e67e22;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #e67e22, #d35400);
    box-shadow: 0 4px 10px rgba(230, 126, 34, 0.3);
}

.atv-content {
    flex: 1;
}

.atv-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
    font-weight: 600;
    margin-bottom: 4px;
}

.atv-time {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1.3;
}

.atv-desc {
    display: block;
    font-size: 0.75rem;
    color: #7f8c8d;
    margin-top: 4px;
}

/* Versión más compacta (opcional, si quieres que ocupe menos espacio) */
.atv-duration-box.compact {
    padding: 12px 16px;
}

.atv-duration-box.compact .atv-icon {
    width: 45px;
    height: 45px;
    font-size: 2.2rem;
}

.atv-duration-box.compact .atv-time {
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 550px) {
    .atv-duration-box {
        padding: 12px 15px;
        gap: 12px;
    }
    
    .atv-icon {
        width: 45px;
        height: 45px;
        font-size: 2.2rem;
    }
    
    .atv-time {
        font-size: 1.1rem;
    }
}











/* Estilos para horarios del tour grupal */
.tour-schedule {
    margin: 25px 0;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 20px;
}

.tour-schedule h3 {
    font-size: 1.3rem;
    margin-bottom: 18px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 8px;
}

.schedule-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.schedule-option {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

.schedule-option:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.schedule-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: #fff;
    border-bottom: 2px solid;
}

.morning .schedule-header {
    border-bottom-color: #f9a825;
}

.afternoon .schedule-header {
    border-bottom-color: #5d4037;
}

.schedule-icon {
    font-size: 1.5rem;
}

.schedule-title {
    font-weight: 700;
    font-size: 1rem;
    color: #333;
}

.morning .schedule-title {
    color: #e67e22;
}

.afternoon .schedule-title {
    color: #5d4037;
}

.schedule-details {
    list-style: none;
    padding: 14px 18px;
    margin: 0;
}

.schedule-details li {
    font-size: 0.85rem;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.4;
}

.schedule-details li:last-child {
    margin-bottom: 0;
}

.schedule-details li strong {
    color: #2c3e50;
    font-weight: 700;
}

.schedule-note {
    background: #fff3e0;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    color: #b86f00;
    border-left: 4px solid #f9a825;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 600px) {
    .tour-schedule {
        padding: 15px;
    }
    
    .schedule-details li {
        font-size: 0.8rem;
    }
    
    .schedule-header {
        padding: 10px 14px;
    }
}








/* Horario personalizado */
.custom-schedule-box {
    background: linear-gradient(135deg, #F5E7D3 0%, #E8D5B7 100%);
    border-left: 5px solid #D4A373;
    border-radius: 12px;
    padding: 15px 18px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.schedule-icon {
    font-size: 2rem;
    background: #D4A373;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #A3B18A;
    color: #fff;
}

.schedule-content {
    flex: 1;
}

.schedule-label {
    display: block;
    font-weight: bold;
    font-size: 0.9rem;
    color: #5E4B3C;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.schedule-text {
    font-size: 0.95rem;
    color: #344E41;
    line-height: 1.4;
}

.schedule-text strong {
    color: #D4A373;
}