:root {
    --primary: #c21820;
    --primary-hover: #a1141a;
    --yellow: #f8b600;
    --yellow-hover: #e0a500;
    --dark: #2c2c2c;
    --light-bg: #fdfaf5; /* Slightly warmer */
    --white: #ffffff;
    --text: #4a4a4a;
    --text-light: #777777;
    --border: #f0e6d6;
    --shadow: 0 15px 35px rgba(194, 24, 32, 0.1); /* Colored shadow */
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --radius: 25px; /* Much softer */
    --radius-sm: 15px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Quicksand', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: 'Fraunces', serif; color: var(--dark); font-weight: 700; line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }
.text-center { text-align: center; }

/* Header */
header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; }
nav { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }
.logo-container { display: flex; align-items: center; gap: 15px; font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.logo-container img { height: 65px; transition: var(--transition); }
.logo-container:hover img { transform: rotate(5deg) scale(1.1); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-size: 0.95rem; font-weight: 700; position: relative; color: var(--text); }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a.active::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 100%; height: 3px; background: var(--primary); border-radius: 10px; }
.btn-book { background: linear-gradient(135deg, var(--primary), var(--primary-hover)); color: var(--white) !important; padding: 12px 30px; border-radius: 50px; font-weight: 700; transition: var(--transition); display: inline-block; box-shadow: 0 5px 15px rgba(194, 24, 32, 0.3); }
.btn-book:hover { background: var(--primary-hover); transform: translateY(-2px); }

/* Hero */
.hero { height: 90vh; background-color: var(--dark); background-size: cover; background-position: center; display: flex; align-items: center; position: relative; }

.tickets-hero { height: 60vh; position: relative; overflow: hidden; }
.tickets-hero-info { position: absolute; top: 50%; left: 5%; transform: translateY(-50%); max-width: 800px; color: #ffffff; z-index: 5; padding: 20px; }
.tickets-hero-tagline { font-weight: 700; font-size: 1.2rem; margin-bottom: 15px; color: #ffffff; text-shadow: 0 2px 10px rgba(0,0,0,0.5); text-transform: uppercase; letter-spacing: 2px; }
.tickets-hero-title { font-size: 3.5rem; margin-bottom: 25px; color: #ffffff; text-shadow: 0 4px 20px rgba(0,0,0,0.8); line-height: 1.1; }
.tickets-hero-badges { position: absolute; bottom: 40px; right: 40px; z-index: 10; display: flex; flex-direction: column; gap: 15px; align-items: flex-end; }
.tickets-hero-badges .btn-yellow, .tickets-hero-badges .btn-primary { margin: 0; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.tickets-hero-badge-primary { padding: 15px 35px; border-radius: 50px; font-weight: 800; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.8)); }
.hero-content { position: relative; z-index: 1; text-align: center; color: var(--white); max-width: 900px; margin: 0 auto; padding-top: 50px; }
.hero h1 { font-size: 4rem; color: var(--white); margin-bottom: 25px; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.hero p { font-size: 1.3rem; margin-bottom: 35px; opacity: 0.95; font-weight: 500; }
.btn-primary { background: linear-gradient(135deg, var(--primary), #e53935); color: var(--white); padding: 18px 45px; border-radius: 50px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; gap: 12px; font-size: 1.15rem; border: none; cursor: pointer; transition: var(--transition); box-shadow: 0 10px 25px rgba(194, 24, 32, 0.4); }
.btn-primary:hover { transform: scale(1.05) translateY(-3px); box-shadow: 0 15px 30px rgba(194, 24, 32, 0.5); }

/* Experience Section (Map & Text) */
.exp-section { background: var(--white); padding: 120px 0; position: relative; }
.exp-section::before { content: ''; position: absolute; width: 300px; height: 300px; background: rgba(248, 182, 0, 0.05); border-radius: 50%; top: -100px; left: -100px; z-index: 0; }
.split-exp { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.map-box { background: #fdf5e6; border-radius: 35px; padding: 30px; min-height: 450px; box-shadow: var(--shadow); position: relative; display: flex; align-items: center; justify-content: center; transform: rotate(-1deg); }
.tagline { color: var(--primary); font-weight: 800; text-transform: uppercase; letter-spacing: 3px; font-size: 0.85rem; margin-bottom: 15px; display: inline-block; background: #fff1f1; padding: 5px 15px; border-radius: 20px; }
.exp-content h2 { font-size: 3rem; margin-bottom: 25px; }
.exp-content p { color: var(--text-light); margin-bottom: 40px; font-size: 1.1rem; font-weight: 500; }
.features-mini { display: flex; gap: 20px; }
.feature-mini { display: flex; align-items: center; gap: 15px; background: #fff5f5; padding: 20px 30px; border-radius: 25px; flex: 1; box-shadow: 0 5px 15px rgba(0,0,0,0.02); }
.feature-mini i { color: var(--primary); font-size: 1.8rem; }
.feature-mini h4 { font-family: 'Quicksand', sans-serif; font-size: 1.1rem; margin-bottom: 2px; color: var(--dark); font-weight: 700; }
.feature-mini p { margin: 0; font-size: 0.8rem; color: var(--text-light); }

/* Values Grid */
.values-bg { background: var(--light-bg); padding: 100px 0; position: relative; }
.section-title-center { text-align: center; margin-bottom: 60px; }
.section-title-center h2 { font-size: 3rem; margin-bottom: 15px; }
.title-underline { width: 80px; height: 5px; background: var(--primary); margin: 0 auto; border-radius: 10px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.value-card { background: var(--white); padding: 50px 35px; border-radius: 35px; text-align: center; box-shadow: var(--shadow); transition: var(--transition); border-bottom: 5px solid transparent; }
.value-card:hover { transform: translateY(-15px) scale(1.02); border-bottom-color: var(--primary); }
.value-icon { width: 80px; height: 80px; background: #fff5f5; color: var(--primary); font-size: 2.5rem; display: flex; align-items: center; justify-content: center; border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; margin: 0 auto 25px; transition: var(--transition); }
.value-card:hover .value-icon { border-radius: 50%; transform: rotate(360deg); background: var(--primary); color: var(--white); }
.value-card h3 { font-size: 1.7rem; margin-bottom: 15px; }
.value-card p { color: var(--text-light); font-size: 0.95rem; }

/* Tours Cards */
.tours-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; padding: 100px 0; }
.tour-card { border-radius: 40px; overflow: hidden; position: relative; color: var(--white); min-height: 450px; display: flex; flex-direction: column; justify-content: flex-end; padding: 50px; box-shadow: var(--shadow); transition: var(--transition); }
.tour-card:hover { transform: scale(1.02); }
.tour-card.vip { background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.1)), url('chuchu3.jpg') center/cover; }
.tour-card.vip h3 { color: var(--white); font-size: 2.5rem; margin-bottom: 15px; }
.tour-card.vip p { margin-bottom: 25px; opacity: 0.9; font-size: 1.1rem; }
.btn-white { background: var(--white); color: var(--dark); padding: 12px 30px; border-radius: 50px; font-weight: 700; font-size: 0.95rem; display: inline-block; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.btn-white:hover { background: var(--primary); color: var(--white); }

/* Small cards */
.small-cards-wrapper { display: flex; flex-direction: column; gap: 30px; }
.small-card { flex: 1; border-radius: 35px; padding: 35px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; box-shadow: var(--shadow); transition: var(--transition); }
.small-card:hover { transform: scale(1.05); }
.small-card.grupo { background: #fff; color: var(--dark); border: 2px solid #f0f2f5; }
.small-card.grupo .icon { width: 60px; height: 60px; background: #fff5f5; border-radius: 20px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.5rem; margin-bottom: 15px; }
.small-card.grupo h4 { font-family: 'Quicksand', sans-serif; font-size: 1.2rem; font-weight: 700; }
.small-card.grupo p { font-size: 0.85rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 15px; font-weight: 700; }
.divider { width: 100%; border-top: 2px dashed #eee; margin-bottom: 15px; }
.small-card.grupo h3 { font-family: 'Fraunces', serif; font-size: 1.8rem; color: var(--primary); }

.small-card.digital { background: linear-gradient(135deg, var(--primary), #d32f2f); color: var(--white); }
.small-card.digital i { font-size: 2.5rem; margin-bottom: 15px; }
.small-card.digital h4 { font-family: 'Quicksand', sans-serif; color: var(--white); font-size: 1.3rem; margin-bottom: 5px; font-weight: 700; }
.small-card.digital p { font-size: 0.9rem; opacity: 0.9; margin-bottom: 20px; font-weight: 500; }
.btn-outline { border: 2px solid rgba(255,255,255,0.4); padding: 10px 25px; border-radius: 50px; font-size: 0.9rem; display: inline-block; font-weight: 700; }
.btn-outline:hover { background: rgba(255,255,255,0.1); }

/* Footer */
footer { background: var(--light-bg); border-top: 1px solid var(--border); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--primary); margin-bottom: 20px; }
.footer-logo img { height: 40px; filter: grayscale(100%); opacity: 0.8; }
.footer-grid p { color: var(--text-light); font-size: 0.9rem; }
.footer-links h4 { font-family: 'Outfit', sans-serif; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; color: var(--dark); }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { color: var(--text-light); font-size: 0.9rem; }
.footer-links ul li a:hover { color: var(--primary); }
.social-icons { display: flex; gap: 10px; }
.social-icons a { width: 40px; height: 40px; border-radius: 50%; background: var(--white); display: flex; align-items: center; justify-content: center; color: var(--dark); border: 1px solid var(--border); }
.social-icons a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.footer-bottom { text-align: center; border-top: 1px solid var(--border); padding-top: 30px; font-size: 0.8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 2px; }

/* Recorrido page specific */
.steps-grid { padding: 60px 0; }
.step-item { display: flex; gap: 25px; margin-bottom: 40px; align-items: flex-start; }
.step-number { width: 60px; height: 60px; background: #fff5f5; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--primary); font-size: 1.5rem; flex-shrink: 0; box-shadow: 0 5px 15px rgba(194, 24, 32, 0.1); }
.step-content h3 { font-size: 1.6rem; margin-bottom: 12px; }
.step-content p { color: var(--text-light); font-weight: 500; }

/* WhatsApp buttons */
.btn-whatsapp { background: #25D366; color: var(--white); padding: 18px 35px; border-radius: 50px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; gap: 12px; font-size: 1.05rem; border: none; cursor: pointer; transition: var(--transition); box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); }
.btn-whatsapp:hover { background: #1ebe5b; transform: scale(1.05) translateY(-3px); box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5); color: var(--white); }

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); background: #1ebe5b; color: var(--white); }

@media (max-width: 480px) {
    .whatsapp-float { width: 52px; height: 52px; font-size: 1.5rem; bottom: 18px; right: 18px; }
}

/* Buttons specific */
.btn-yellow { background: linear-gradient(135deg, var(--yellow), #ff9800); color: var(--dark); padding: 15px 35px; border-radius: 50px; font-weight: 800; display: inline-flex; align-items: center; gap: 12px; border: none; cursor: pointer; transition: var(--transition); box-shadow: 0 10px 20px rgba(248, 182, 0, 0.3); }
.btn-yellow:hover { transform: scale(1.05) translateY(-3px); box-shadow: 0 15px 30px rgba(248, 182, 0, 0.4); }
.btn-ghost { border: 2px solid rgba(255,255,255,0.5); background: rgba(255,255,255,0.1); color: var(--white); padding: 15px 35px; border-radius: 50px; font-weight: 800; display: inline-flex; align-items: center; gap: 12px; transition: var(--transition); backdrop-filter: blur(5px); }
.btn-ghost:hover { background: rgba(255,255,255,0.2); border-color: white; }

/* Galeria Page specific */
.galeria-header { text-align: center; padding: 120px 0 60px; }
.galeria-header .tagline { margin-bottom: 15px; }
.galeria-header h1 { font-size: 3.5rem; margin-bottom: 25px; }
.galeria-header p { max-width: 700px; margin: 0 auto; color: var(--text-light); font-size: 1.2rem; font-weight: 500; }
.masonry-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-bottom: 100px; }
.masonry-col { display: flex; flex-direction: column; gap: 30px; }
.masonry-item { border-radius: 35px; overflow: hidden; position: relative; box-shadow: var(--shadow); transition: var(--transition); }
.masonry-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.masonry-item:hover { transform: scale(1.02); }
.masonry-full { grid-column: 1 / -1; height: 400px; border-radius: 40px; overflow: hidden; margin-top: 30px; box-shadow: var(--shadow); }
.masonry-full img { width: 100%; height: 100%; object-fit: cover; }

.mision-section { padding: 120px 0; background: var(--light-bg); position: relative; overflow: hidden; }
.mision-section::after { content: ''; position: absolute; width: 400px; height: 400px; background: rgba(194, 24, 32, 0.03); border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; bottom: -100px; right: -100px; z-index: 0; }
.mision-content { position: relative; z-index: 1; }
.mision-content h2 { font-size: 3rem; margin-bottom: 25px; }
.mision-line { width: 60px; height: 6px; background: var(--primary); margin-bottom: 35px; border-radius: 10px; }
.mision-content p { color: var(--text-light); margin-bottom: 25px; font-size: 1.1rem; font-weight: 500; }

/* Reservation form */
.reservation-card { background: var(--white); border-radius: 40px; padding: 50px; box-shadow: var(--shadow); }
.reservation-form { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-top: 30px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.8rem; font-weight: 800; color: var(--dark); text-transform: uppercase; letter-spacing: 1px; }
.form-group input, .form-group select {
    padding: 14px 16px;
    border-radius: 15px;
    border: 2px solid var(--border);
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    color: var(--text);
    background: var(--light-bg);
    transition: var(--transition);
}
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--primary); background: var(--white); }
.form-actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 25px; align-items: center; margin-top: 10px; }
.form-confirm { display: none; color: var(--primary); font-weight: 700; margin-top: 20px; }

.group-notice {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--primary);
    color: var(--white);
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 1.4;
    padding: 22px 28px;
    border-radius: 20px;
    margin-top: 25px;
    box-shadow: 0 15px 30px rgba(194, 24, 32, 0.3);
}
.group-notice i { font-size: 1.6rem; flex-shrink: 0; }

.info-notice {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--dark);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 20px 25px;
    border-radius: 20px;
    margin-top: 40px;
}
.info-notice i { font-size: 1.4rem; flex-shrink: 0; color: var(--yellow); }

@media (max-width: 600px) {
    .info-notice { font-size: 0.88rem; padding: 18px 20px; }
}

@media (max-width: 600px) {
    .group-notice { font-size: 0.95rem; padding: 18px 20px; }
}

.checkbox-group { display: flex; flex-wrap: wrap; gap: 10px; }
.checkbox-pill { display: flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 20px; border: 2px solid var(--border); background: var(--light-bg); font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: var(--transition); }
.checkbox-pill input { accent-color: var(--primary); width: 16px; height: 16px; cursor: pointer; }
.checkbox-pill.is-checked { border-color: var(--primary); background: #fff5f5; color: var(--primary); }

.form-error { grid-column: 1 / -1; display: none; color: var(--primary); font-size: 0.85rem; font-weight: 700; margin-top: -8px; }
.form-error.visible { display: block; }

@media (max-width: 600px) {
    .reservation-card { padding: 35px 25px; border-radius: 25px; }
    .reservation-form { grid-template-columns: 1fr; }
}

/* Tickets page specific */
.horarios-box { display: flex; align-items: center; gap: 40px; background: var(--white); padding: 50px; border-radius: 40px; box-shadow: var(--shadow); margin-top: 60px; }
.time-pills { display: grid; grid-template-columns: repeat(auto-fit, minmax(85px, 1fr)); gap: 12px; margin-top: 25px; }
.time-pill { padding: 14px 10px; border-radius: 20px; font-weight: 800; text-align: center; transition: var(--transition); border: 2px solid transparent; }
.time-pill h4 { font-size: 0.95rem; }
.time-pill:hover { border-color: var(--primary); background: var(--white); transform: translateY(-5px); }
.time-pill.light { background: #f0f2f5; color: var(--dark); }
.time-pill.yellow { background: linear-gradient(135deg, #ffeebb, #ffd54f); color: var(--dark); }

/* Map card on recorrido */
.map-card-large { background: var(--white); padding: 60px; border-radius: 40px; box-shadow: var(--shadow); text-align: center; }
.map-card-large .icon { width: 80px; height: 80px; background: #fff5f5; color: var(--primary); border-radius: 25px; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 25px; box-shadow: 0 10px 20px rgba(194, 24, 32, 0.1); }
.dotted-line { margin: 50px 0; }
.link-primary { color: var(--primary); font-weight: 800; text-transform: uppercase; letter-spacing: 2px; font-size: 0.95rem; display: inline-block; background: #fff1f1; padding: 10px 25px; border-radius: 50px; }
.link-primary:hover { background: var(--primary); color: white; }

/* Interactive Map Section */
.map-container-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 0;
    height: 700px;
    margin-top: 50px;
    background: var(--white);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid var(--border);
}

.stops-sidebar {
    height: 100%;
    overflow-y: auto;
    padding: 30px;
    background: #fffcf9;
    border-right: 2px solid var(--border);
}

.stops-sidebar h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
}

.stops-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stop-card {
    background: var(--white);
    padding: 15px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 15px;
    border: 2px solid transparent;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.stop-card:hover {
    border-color: var(--primary);
    transform: translateX(5px);
    background: #fff5f5;
}

.stop-card.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(194, 24, 32, 0.3);
}

.stop-number-small {
    width: 30px;
    height: 30px;
    background: #fff5f5;
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 800;
    flex-shrink: 0;
}

.stop-name-small {
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#map {
    height: 100%;
    width: 100%;
    z-index: 1;
}

/* Leaflet Customizations */
.leaflet-div-icon {
    background: none !important;
    border: none !important;
}

.marker-pin {
    width: 35px;
    height: 35px;
    border-radius: 50% 50% 50% 0;
    background: var(--primary);
    position: absolute;
    transform: rotate(-45deg);
    left: 50%;
    top: 50%;
    margin: -17px 0 0 -17px;
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.marker-pin span {
    transform: rotate(45deg);
    color: white;
    font-weight: 800;
    font-size: 0.9rem;
    font-family: 'Quicksand', sans-serif;
}

/* Mobile Nav (Simple toggle) */
.nav-toggle { display: none; font-size: 1.5rem; color: var(--primary); cursor: pointer; padding: 10px; margin: -10px; }

/* Precios banner (tickets.html) */
.precios-banner { background: var(--primary); border-radius: 40px; padding: 50px; display: flex; flex-wrap: wrap; gap: 40px; align-items: center; justify-content: space-between; color: var(--white); box-shadow: var(--shadow); }
.precios-numbers { display: flex; gap: 40px; flex-wrap: wrap; }
.precio-amount { font-size: 2.5rem; font-weight: 800; font-family: 'Fraunces', serif; }
.precio-usd { font-size: 1.1rem; font-weight: 600; opacity: 0.8; }

/* Highlights grid (tickets.html "Más que un Paseo") */
.highlight-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

/* Responsive adjustments */
@media (max-width: 992px) {
    .split-exp { grid-template-columns: 1fr !important; gap: 40px; }
    .map-container-wrapper { grid-template-columns: 1fr; height: auto; }
    .stops-sidebar { height: 300px; }
    #map { height: 350px; }
    .values-grid { grid-template-columns: 1fr; }
    .tours-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .masonry-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero { min-height: 70vh; height: auto; display: flex; flex-direction: column; justify-content: center; }
    .hero h1 { font-size: 2rem; margin-bottom: 20px; line-height: 1.2; }
    .hero p { font-size: 1rem; margin-bottom: 20px; }
    
    .nav-links { display: none; }
    .nav-links.nav-links-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    .nav-links a { padding: 15px 0; border-bottom: 1px solid var(--border); width: 100%; text-align: center; }
    .nav-links a:last-child { border-bottom: none; }
    .nav-toggle { display: block; }
    
    .section-padding { padding: 60px 0; }
    .section-title-center h2 { font-size: 2.2rem; }
    .exp-content h2 { font-size: 1.8rem; }
    .features-mini { flex-direction: column; }
    
    /* Tickets Hero Specific */
    .tickets-hero-info {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        padding: 80px 20px 20px;
        text-align: center;
        max-width: 100%;
        margin: 0;
    }
    .tickets-hero-title { font-size: 1.8rem; }
    .tickets-hero-tagline { font-size: 1rem; }

    .tickets-hero-badges {
        position: relative;
        bottom: 0;
        right: 0;
        padding: 0 20px 60px;
        align-items: center;
        width: 100%;
    }

    .tickets-hero-badges a {
        width: 100%;
        justify-content: center;
    }

    .container { padding: 0 20px; }

    .values-bg { padding: 60px 0; }
    .value-card { padding: 35px 25px; border-radius: 25px; }

    .galeria-header { padding: 100px 0 40px; }
    .galeria-header h1 { font-size: 2.2rem; }
    .galeria-header p { font-size: 1rem; }
    .mision-section { padding: 70px 0; }
    .mision-content h2 { font-size: 1.9rem; }

    .tour-card { padding: 30px; min-height: auto; }
    .tour-card.vip h3 { font-size: 1.9rem; }
    .tours-grid { padding: 60px 0; gap: 25px; }

    .split-exp { gap: 30px; }

    .precios-banner { padding: 30px; gap: 25px; }
    .precio-amount { font-size: 2rem; }
    .precios-numbers { gap: 25px; }

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

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .btn-primary, .btn-yellow { padding: 15px 30px; font-size: 1rem; width: 100%; }

    .precios-banner { padding: 25px 20px; border-radius: 25px; }
    .precios-numbers { gap: 15px; justify-content: space-between; width: 100%; }
    .precios-numbers > div { flex: 1; }
}
