/* ════════════════════════════════════════
   CONCHITA TOURS — style.css
   ════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --verde-bosque:  #2c4a2e;
  --verde-medio:   #4a7c59;
  --verde-claro:   #7aab84;
  --tierra:        #a0714f;
  --tierra-claro:  #c9956a;
  --arena:         #f0e8d8;
  --crema:         #faf6ef;
  --blanco:        #ffffff;
  --oscuro:        #1e2d1f;
  --gris-verde:    #8fa899;

  --nav-h: 68px;        /* altura del navbar */
  --radius: 18px;
  --shadow-card: 0 6px 30px rgba(44,74,46,0.12);
  --transition: 0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--crema);
  color: var(--oscuro);
  overflow-x: hidden;
}

/* Textura sutil */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Crect width='4' height='4' fill='%23faf6ef'/%3E%3Ccircle cx='1' cy='1' r='0.5' fill='%23e8dcc8' opacity='0.4'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0;
}

/* ════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════ */
nav {
  position: fixed; top: 0; width: 100%; z-index: 500;
  background: rgba(44,74,46,0.96);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  height: var(--nav-h);
  border-bottom: 1px solid rgba(122,171,132,0.25);
  transition: box-shadow var(--transition);
}
nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.3); }

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem; color: var(--arena);
  letter-spacing: 2px; font-weight: 600;
  flex-shrink: 0;
}
.logo em { color: var(--tierra-claro); font-style: italic; }

/* Links desktop */
.nav-links {
  display: flex; gap: 2.5rem; align-items: center;
}
.nav-links .nav-link {
  color: #c5d8c7; font-weight: 400;
  font-size: 0.88rem; letter-spacing: 1.5px; text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links .nav-link:hover { color: var(--tierra-claro); }
.nav-btn {
  background: var(--tierra) !important;
  color: var(--blanco) !important;
  padding: 0.5rem 1.4rem; border-radius: 30px;
  font-weight: 500 !important;
  transition: background var(--transition);
}
.nav-btn:hover { background: var(--tierra-claro) !important; }

/* Hamburguesa */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; padding: 6px;
  width: 40px; height: 40px;
}
.hamburger span {
  display: block; height: 2px; width: 24px;
  background: var(--arena); border-radius: 2px;
  transition: transform 0.35s, opacity 0.35s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menú móvil */
.mobile-menu {
  position: fixed; inset: 0; z-index: 499;
  background: var(--verde-bosque);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2.5rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.mobile-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; color: var(--arena); font-weight: 600;
  letter-spacing: 1px; transition: color var(--transition);
}
.mobile-link:hover { color: var(--tierra-claro); }
.mobile-reservar {
  background: var(--tierra); color: var(--blanco) !important;
  padding: 0.8rem 2.5rem; border-radius: 40px;
  font-size: 1.2rem !important;
}
.mobile-close {
  position: absolute; top: 1.2rem; right: 1.4rem;
  background: none; border: none; color: var(--arena);
  font-size: 1.8rem; line-height: 1;
}

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.hero {
  height: 100svh; min-height: 580px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(30,45,31,0.55) 0%, rgba(44,74,46,0.3) 50%, rgba(30,45,31,0.75) 100%),
    url('../img/pesca/12.jpeg') center top/cover no-repeat;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 760px; padding: 0 1.5rem;
  padding-top: var(--nav-h);
}
.hero-leaf {
  font-size: 2.2rem; margin-bottom: 1rem;
  display: block; animation: sway 4s ease-in-out infinite;
}
@keyframes sway {
  0%,100% { transform: rotate(-5deg); }
  50%      { transform: rotate(5deg); }
}
.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 8vw, 6rem);
  color: var(--arena); line-height: 1.05; font-weight: 700;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
  animation: fadeUp 1s ease both;
}
.hero-content h1 em { color: var(--tierra-claro); font-style: italic; }
.hero-tagline {
  color: #d5e8d7; font-size: clamp(0.95rem, 2.5vw, 1.1rem); font-weight: 300;
  margin: 1.2rem 0 2.2rem; line-height: 1.7;
  animation: fadeUp 1.1s 0.15s ease both;
}
.hero-btns {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 1.2s 0.3s ease both;
}
.btn-primary {
  background: var(--tierra); color: var(--blanco);
  padding: 0.9rem 2.2rem; border-radius: 40px;
  font-weight: 600; letter-spacing: 0.5px; font-size: 0.95rem;
  box-shadow: 0 8px 25px rgba(160,113,79,0.4);
  transition: all var(--transition);
}
.btn-primary:hover { background: var(--tierra-claro); transform: translateY(-3px); }
.btn-secondary {
  border: 2px solid rgba(240,232,216,0.6); color: var(--arena);
  padding: 0.9rem 2.2rem; border-radius: 40px;
  font-weight: 400; font-size: 0.95rem; letter-spacing: 0.5px;
  backdrop-filter: blur(4px); transition: all var(--transition);
}
.btn-secondary:hover { background: rgba(240,232,216,0.15); }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: rgba(240,232,216,0.6); font-size: 0.72rem;
  letter-spacing: 2px; text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ════════════════════════════════════════
   DIVISOR
   ════════════════════════════════════════ */
.divider {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 0 5vw; margin: 3rem 0;
}
.divider-line { flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--verde-claro), transparent); }
.divider-icon { color: var(--verde-medio); font-size: 1.4rem; }

/* ════════════════════════════════════════
   NOSOTROS
   ════════════════════════════════════════ */
.about {
  padding: 5rem 5vw 4rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  position: relative; z-index: 1;
}
.about-images { position: relative; height: 460px; }
.img-main {
  position: absolute; top: 0; left: 0; width: 75%; height: 80%;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 20px 50px rgba(44,74,46,0.2);
}
.img-main img  { width: 100%; height: 100%; object-fit: cover; }
.img-secondary {
  position: absolute; bottom: 0; right: 0; width: 55%; height: 55%;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 15px 40px rgba(44,74,46,0.25);
  border: 4px solid var(--crema);
}
.img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: var(--tierra); color: var(--blanco);
  width: 80px; height: 80px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700;
  box-shadow: 0 8px 25px rgba(160,113,79,0.4);
  border: 3px solid var(--crema); z-index: 5; line-height: 1;
}
.about-badge small { font-size: 0.55rem; font-family: 'Jost', sans-serif; letter-spacing: 1px; text-transform: uppercase; }

.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--tierra); margin-bottom: 1rem;
}
.section-label::before { content: ''; width: 28px; height: 2px; background: var(--tierra); }

.about h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.2;
  font-weight: 700; margin-bottom: 1.2rem;
}
.about p { color: #4a5e4c; line-height: 1.85; font-weight: 300; margin-bottom: 1rem; font-size: 1rem; }

.values {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem;
}
.value-item {
  background: var(--blanco); padding: 1rem 1.2rem;
  border-radius: 12px; border-left: 3px solid var(--verde-medio);
  box-shadow: 0 4px 15px rgba(44,74,46,0.07);
}
.value-item .vi-icon { font-size: 1.3rem; margin-bottom: 0.3rem; }
.value-item strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--verde-bosque); }
.value-item span    { font-size: 0.78rem; color: var(--gris-verde); }

/* ════════════════════════════════════════
   TOURS
   ════════════════════════════════════════ */
.tours-section {
  padding: 5rem 5vw 6rem;
  background: linear-gradient(180deg, var(--crema) 0%, #eee6d5 100%);
  position: relative; z-index: 1;
}
.tours-header { text-align: center; margin-bottom: 3.5rem; }
.tours-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; margin-bottom: 0.8rem;
}
.tours-header p { color: #6a7f6c; font-weight: 300; font-size: 1rem; max-width: 520px; margin: 0 auto; }

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
/* Últimas 2 tarjetas centradas en fila de 3 */
.tours-grid .tour-card:nth-child(4) { grid-column: 1 / 2; }
.tours-grid .tour-card:nth-child(5) { grid-column: 2 / 3; }

.tour-card {
  background: var(--blanco);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  transition: transform 0.4s, box-shadow 0.4s;
}
.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 55px rgba(44,74,46,0.18);
}
.card-img-wrap { position: relative; overflow: hidden; flex-shrink: 0; aspect-ratio: 3 / 2; }
.card-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.6s; }
.tour-card:hover .card-img { transform: scale(1.07); }
.card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,45,31,0.6) 0%, transparent 60%);
}
.card-price-tag {
  position: absolute; bottom: 14px; left: 14px;
  background: var(--tierra); color: var(--blanco);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 700;
  padding: 0.3rem 0.9rem; border-radius: 30px;
}
.card-price-tag small { font-size: 0.65rem; font-family: 'Jost', sans-serif; font-weight: 400; }
.card-badge-top {
  position: absolute; top: 14px; right: 14px;
  background: var(--verde-bosque); color: var(--arena);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  padding: 0.25rem 0.75rem; border-radius: 20px;
}
.card-body { padding: 1.4rem 1.5rem; flex: 1; }
.card-icon  { font-size: 1.5rem; margin-bottom: 0.5rem; }
.card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--verde-bosque);
}
.card-body p { color: #5a7060; line-height: 1.7; font-size: 0.92rem; font-weight: 300; margin-bottom: 1.2rem; }
.card-conditions { border-top: 1px solid #eae4d8; padding-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.cond-item { display: flex; align-items: flex-start; gap: 0.6rem; color: #7a9482; font-size: 0.84rem; }
.cond-dot  { width: 6px; height: 6px; border-radius: 50%; background: var(--verde-claro); flex-shrink: 0; margin-top: 5px; }
.card-footer { padding: 0 1.5rem 1.5rem; }
.btn-reservar {
  display: block; text-align: center;
  background: var(--verde-bosque); color: var(--arena);
  padding: 0.75rem; border-radius: 12px;
  font-weight: 500; font-size: 0.9rem; letter-spacing: 0.5px;
  transition: background var(--transition), transform 0.2s;
}
.btn-reservar:hover { background: var(--verde-medio); transform: translateY(-1px); }

/* ════════════════════════════════════════
   BANNER
   ════════════════════════════════════════ */
.banner {
  background:
    linear-gradient(to right, rgba(44,74,46,0.92), rgba(30,45,31,0.88)),
    url('https://images.unsplash.com/photo-1470770841072-f978cf4d019e?w=1400&auto=format&fit=crop') center/cover;
  padding: 5rem 5vw; text-align: center; position: relative; z-index: 1;
}
.banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 3rem); color: var(--arena); font-weight: 700; margin-bottom: 1rem;
}
.banner p { color: #b5d0bb; font-weight: 300; max-width: 520px; margin: 0 auto 2.2rem; font-size: 1rem; line-height: 1.7; }
.banner-features {
  display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; margin-bottom: 2.5rem;
}
.bf-item { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.bf-item .icon { font-size: 1.8rem; }
.bf-item span  { color: #c5d8c7; font-size: 0.82rem; letter-spacing: 1px; text-transform: uppercase; }

/* ════════════════════════════════════════
   CONTACTO
   ════════════════════════════════════════ */
.contact {
  padding: 5rem 5vw 6rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
  position: relative; z-index: 1;
}
.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; margin-bottom: 1rem;
}
.contact-info p { color: #4a5e4c; line-height: 1.8; font-weight: 300; margin-bottom: 2rem; }
.contact-cards { display: flex; flex-direction: column; gap: 0.9rem; }
.contact-card {
  display: flex; align-items: center; gap: 1.1rem;
  background: var(--blanco); padding: 1rem 1.3rem; border-radius: 14px;
  box-shadow: 0 4px 20px rgba(44,74,46,0.08);
}
.cc-icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--verde-bosque), var(--verde-medio));
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.cc-label { font-size: 0.7rem; color: var(--gris-verde); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }
.cc-value  { font-weight: 500; color: var(--oscuro); font-size: 0.95rem; }

.contact-form {
  background: var(--blanco); padding: 2.2rem;
  border-radius: 20px; box-shadow: 0 10px 50px rgba(44,74,46,0.1);
}
.contact-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem; font-weight: 700; margin-bottom: 0.3rem; color: var(--verde-bosque);
}
.form-sub { color: var(--gris-verde); font-size: 0.88rem; margin-bottom: 1.6rem; font-weight: 300; }
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.5px; color: #4a5e4c; margin-bottom: 0.4rem; text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; border: 1.5px solid #dde8df; border-radius: 10px;
  padding: 0.7rem 0.9rem; font-family: 'Jost', sans-serif;
  font-size: 0.93rem; color: var(--oscuro); background: #fafcfa;
  outline: none; transition: border-color var(--transition), box-shadow var(--transition);
  /* Evita zoom en iOS */
  font-size: max(16px, 0.93rem);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--verde-medio);
  box-shadow: 0 0 0 3px rgba(74,124,89,0.12);
}
.form-group textarea { resize: vertical; min-height: 90px; }

/* Mensaje form */
.form-msg {
  padding: 0.8rem 1rem; border-radius: 10px; margin-bottom: 1rem;
  font-size: 0.9rem; font-weight: 500;
}
.form-msg.success { background: #e6f4ea; color: #2c5e2e; border: 1px solid #a8d5b0; }
.form-msg.error   { background: #fdecea; color: #8b2e2e; border: 1px solid #f0b4b4; }

.btn-submit {
  width: 100%; background: linear-gradient(135deg, var(--verde-bosque), var(--verde-medio));
  color: var(--arena); border: none; padding: 1rem;
  border-radius: 12px; font-family: 'Jost', sans-serif;
  font-weight: 600; font-size: 0.97rem; letter-spacing: 0.5px;
  transition: opacity var(--transition), transform 0.2s;
}
.btn-submit:hover  { opacity: 0.88; transform: translateY(-2px); }
.btn-submit:active { transform: translateY(0); }

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
footer {
  background: var(--verde-bosque); color: #8ab09a;
  padding: 3.5rem 5vw 2rem;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2.5rem;
  position: relative; z-index: 1;
}
.footer-brand .logo { font-size: 1.45rem; margin-bottom: 0.8rem; display: block; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; font-weight: 300; }
.footer-col h4 {
  color: var(--arena); font-size: 0.78rem; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 600; margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { color: #8ab09a; font-size: 0.88rem; font-weight: 300; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--tierra-claro); }

.footer-bottom {
  background: var(--oscuro); color: #4a7060;
  text-align: center; padding: 1.2rem 2rem;
  font-size: 0.82rem; font-weight: 300; letter-spacing: 0.5px;
  position: relative; z-index: 1;
}
.footer-bottom strong { color: var(--tierra-claro); }

/* ════════════════════════════════════════
   BOTÓN FLOTANTE WHATSAPP
   ════════════════════════════════════════ */
.whatsapp-btn {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 400;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.55); }
.whatsapp-btn svg { width: 30px; height: 30px; }

/* ════════════════════════════════════════
   ANIMACIONES
   ════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}
.reveal         { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }

/* ════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 1024px)
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tours-grid .tour-card:nth-child(4),
  .tours-grid .tour-card:nth-child(5) {
    grid-column: auto;
  }
  .about  { gap: 3rem; }
  .contact { gap: 3rem; }
}

/* ════════════════════════════════════════
   RESPONSIVE — Mobile grande (≤ 768px)
   ════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  /* Navbar: ocultar links, mostrar hamburguesa */
  .nav-links  { display: none; }
  .hamburger  { display: flex; }

  /* Hero */
  .hero-tagline br { display: none; }

  /* About: una sola columna, ocultar imagen flotante */
  .about {
    grid-template-columns: 1fr;
    padding: 4rem 5vw 3rem;
    gap: 2rem;
  }
  .about-images {
    height: 260px;
  }
  .img-secondary { display: none; }
  .about-badge   { display: none; }
  .img-main { width: 100%; height: 100%; position: relative; }

  /* Tours: 1 columna */
  .tours-grid { grid-template-columns: 1fr; }

  /* Contacto: 1 columna */
  .contact {
    grid-template-columns: 1fr;
    padding: 4rem 5vw;
    gap: 2.5rem;
  }

  /* Footer: 1 columna */
  footer { grid-template-columns: 1fr; gap: 2rem; }

  /* Ocultar hero-scroll en móvil pequeño */
  .hero-scroll { display: none; }

  /* Banner features: 2 columnas en móvil */
  .banner-features { gap: 1.5rem; }
  .bf-item { min-width: calc(50% - 1.5rem); }
}

/* ════════════════════════════════════════
   RESPONSIVE — Mobile pequeño (≤ 480px)
   ════════════════════════════════════════ */
@media (max-width: 480px) {
  .logo { font-size: 1.4rem; }

  .hero-content { padding: 0 1rem; padding-top: var(--nav-h); }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 280px; text-align: center; }

  .about { padding: 3rem 4vw 2rem; }

  .tours-section { padding: 3.5rem 4vw 5rem; }

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

  .form-row { grid-template-columns: 1fr; }

  .contact-form { padding: 1.6rem; }
  .contact { padding: 3rem 4vw 4rem; }

  .banner { padding: 3.5rem 5vw; }
  .banner-features { flex-direction: column; align-items: center; gap: 1.2rem; }
  .bf-item { min-width: auto; }

  footer { padding: 2.5rem 5vw 1.5rem; }

  .whatsapp-btn { bottom: 1rem; right: 1rem; width: 50px; height: 50px; }
  .whatsapp-btn svg { width: 26px; height: 26px; }
}

/* ════════════════════════════════════════
   SELECTOR DE IDIOMA
   ════════════════════════════════════════ */
.lang-selector {
  display: flex; align-items: center; gap: 0.4rem;
}
.lang-sep { color: rgba(197,216,199,0.4); font-size: 0.8rem; }
.lang-btn {
  background: none; border: none;
  color: #c5d8c7; font-family: 'Jost', sans-serif;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 1.5px;
  cursor: pointer; padding: 0.25rem 0.4rem; border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}
.lang-btn:hover  { color: var(--tierra-claro); }
.lang-btn.active {
  color: var(--tierra-claro);
  background: rgba(201,149,106,0.15);
}
.nav-right-mobile {
  display: none; align-items: center; gap: 0.8rem;
}

/* ════════════════════════════════════════
   GALERÍA DE FOTOS
   ════════════════════════════════════════ */
.galeria-section {
  padding: 5rem 5vw 6rem;
  background: var(--verde-bosque);
  position: relative; z-index: 1;
}
.galeria-header { text-align: center; margin-bottom: 3rem; }
.galeria-header .section-label { color: var(--tierra-claro); justify-content: center; }
.galeria-header .section-label::before { background: var(--tierra-claro); }
.galeria-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem); color: var(--arena); font-weight: 700; margin-bottom: 0.7rem;
}
.galeria-header p { color: #8ab09a; font-weight: 300; max-width: 520px; margin: 0 auto 2rem; }

/* Filtros */
.galeria-filters {
  display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap;
}
.gf-btn {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(122,171,132,0.3);
  color: #8ab09a; font-family: 'Jost', sans-serif;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.5px;
  padding: 0.5rem 1.1rem; border-radius: 30px; cursor: pointer;
  transition: all 0.3s;
}
.gf-btn:hover  { background: rgba(255,255,255,0.14); color: var(--arena); }
.gf-btn.active {
  background: var(--tierra); border-color: var(--tierra);
  color: var(--blanco);
}

/* ── Grid: CSS columns — respeta orientación natural de cada foto ── */
.galeria-grid {
  columns: 3;
  column-gap: 1rem;
  margin-top: 2.5rem;
}
.galeria-item {
  break-inside: avoid;      /* nunca parte una foto entre columnas */
  margin-bottom: 1rem;
  border-radius: 12px; overflow: hidden;
  cursor: pointer; position: relative;
  transition: transform 0.35s, box-shadow 0.35s;
}
.galeria-item:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0,0,0,0.45);
}
.galeria-item img {
  width: 100%;
  height: auto;             /* altura natural — sin recortar */
  display: block;
  transition: transform 0.5s;
}
.galeria-item:hover img { transform: scale(1.05); }
.galeria-overlay {
  position: absolute; inset: 0;
  background: rgba(30,45,31,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.galeria-item:hover .galeria-overlay { opacity: 1; }

/* ── Lightbox — corrige imagen cortada arriba ── */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(10,18,11,0.96);
  display: flex; align-items: center; justify-content: center;
  /* padding-top para que no quede bajo el navbar */
  padding: 5rem 1rem 1rem;
  overflow-y: auto;           /* scroll si la foto es muy alta */
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s;
}
.lightbox.open { opacity: 1; pointer-events: all; }

.lb-content {
  position: relative;
  width: 100%;
  max-width: 680px;           /* limita el ancho en fotos verticales */
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  margin: auto;               /* centra verticalmente cuando hay scroll */
}
.lb-content img {
  width: 100%;                /* ocupa todo el ancho del contenedor */
  max-height: 80vh;           /* no más alto que la pantalla */
  border-radius: 10px;
  object-fit: contain;        /* muestra la imagen completa sin recortar */
  object-position: top;       /* si hay que ajustar, desde arriba */
  opacity: 0; transition: opacity 0.4s;
  box-shadow: 0 25px 80px rgba(0,0,0,0.6);
}
.lb-content img.loaded { opacity: 1; }

.lb-caption {
  color: #c5d8c7; font-size: 0.9rem; font-weight: 300;
  letter-spacing: 0.5px; text-align: center;
}
.lb-counter {
  color: #6a9a7e; font-size: 0.8rem; letter-spacing: 1px;
}

.lb-close, .lb-prev, .lb-next {
  position: fixed; background: rgba(44,74,46,0.82);
  border: 1px solid rgba(122,171,132,0.25);
  color: var(--arena); cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  display: flex; align-items: center; justify-content: center;
  z-index: 1001;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: var(--tierra);
}
.lb-close {
  top: 1rem; right: 1.2rem;
  width: 44px; height: 44px; border-radius: 50%;
  font-size: 1.3rem; line-height: 1;
}
.lb-prev, .lb-next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%; font-size: 1.3rem;
}
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }
.lb-prev:hover { transform: translateY(-50%) scale(1.08); }
.lb-next:hover { transform: translateY(-50%) scale(1.08); }

/* ════════════════════════════════════════
   RESPONSIVE — galería y nuevo nav
   ════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Ocultar nav-links, mostrar nav-right-mobile */
  .nav-links    { display: none; }
  .nav-right-mobile { display: flex; }

  /* Galería: 2 columnas en tablet/móvil */
  .galeria-grid { columns: 2; }
  .galeria-item img { height: auto; }

  /* Lightbox en móvil */
  .lightbox { padding: 4.5rem 0.5rem 0.5rem; }
  .lb-content { max-width: 96vw; }
  .lb-prev { left: 0.4rem; }
  .lb-next { right: 0.4rem; }
}

@media (max-width: 480px) {
  .galeria-section { padding: 3.5rem 4vw 4rem; }

  /* Galería: 1 columna en móvil pequeño */
  .galeria-grid { columns: 1; }

  .galeria-filters { gap: 0.4rem; }
  .gf-btn { font-size: 0.78rem; padding: 0.4rem 0.85rem; }

  /* Lightbox: imagen completa, sin borde */
  .lightbox { padding: 4rem 0 0; }
  .lb-content { max-width: 100%; border-radius: 0; }
  .lb-content img { border-radius: 0; max-height: 75vh; }
}

/* ════════════════════════════════════════
   ABOUT — solo texto (sin imágenes)
   ════════════════════════════════════════ */
.about--text-only {
  display: block;
  padding: 5rem 5vw 4rem;
  position: relative; z-index: 1;
}
.about-text-content {
  max-width: 820px;
  margin: 0 auto;
}
.about--text-only h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.2;
  font-weight: 700; margin-bottom: 1.2rem;
}
.about--text-only p {
  color: #4a5e4c; line-height: 1.85; font-weight: 300;
  margin-bottom: 1rem; font-size: 1.02rem;
}
.about--text-only .values {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; margin-top: 2rem;
}
@media (max-width: 900px) {
  .about--text-only .values { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .about--text-only .values { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════════
   CATEGORÍAS DE TOURS
   ════════════════════════════════════════ */
.tours-category {
  margin: 3.5rem 0 1.5rem;
}
.tours-category:first-of-type {
  margin-top: 0;
}
.category-label {
  display: flex; align-items: center; gap: 1rem;
}
.category-label::before,
.category-label::after {
  content: '';
  flex: 1; height: 1px;
  background: linear-gradient(to right, rgba(201,149,106,0.4), transparent);
}
.category-label::after {
  background: linear-gradient(to left, rgba(201,149,106,0.4), transparent);
}
.category-label span {
  background: rgba(201,149,106,0.15);
  border: 1px solid rgba(201,149,106,0.35);
  color: var(--tierra-claro);
  font-size: 0.88rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 0.5rem 1.4rem; border-radius: 30px;
  white-space: nowrap;
}

/* Separación entre grids de categorías */
.tours-section .tours-grid + .tours-category {
  margin-top: 4rem;
}

/* ════════════════════════════════════════
   PRECIO "CONSULTAR" y dots especiales
   ════════════════════════════════════════ */
.card-price-tag.consult-price {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase;
  background: rgba(74,124,89,0.85);
  padding: 0.4rem 0.85rem;
}

.cond-dot--warn {
  background: #e8a838 !important;
}
.cond-dot--info {
  background: var(--verde-claro) !important;
  opacity: 0.7;
}

/* Botón "Consultar" variante */
.btn-consultar {
  background: var(--verde-medio) !important;
}
.btn-consultar:hover {
  background: var(--verde-bosque) !important;
}

/* ════════════════════════════════════════
   GALERÍA — mejoras: ver más, badge tour,
   animación entrada, hint, footer
   ════════════════════════════════════════ */

/* Badge de tour sobre foto destacada */
.galeria-tour-badge {
  position: absolute; bottom: 10px; left: 10px;
  background: rgba(30,45,31,0.82);
  backdrop-filter: blur(4px);
  color: var(--arena); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.8px; padding: 0.3rem 0.7rem;
  border-radius: 20px; pointer-events: none;
  border: 1px solid rgba(122,171,132,0.3);
}

/* Animación de entrada de cada foto */
.galeria-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease,
              box-shadow 0.35s, scale 0.35s;
}
.galeria-item--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Footer de la galería */
.galeria-footer {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 1rem; margin-top: 2.5rem;
}

/* Botón Ver más */
.btn-ver-mas {
  background: var(--tierra); color: var(--blanco);
  border: none; font-family: 'Jost', sans-serif;
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.5px;
  padding: 0.8rem 2rem; border-radius: 30px; cursor: pointer;
  display: flex; align-items: center; gap: 0.5rem;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 6px 20px rgba(160,113,79,0.35);
}
.btn-ver-mas:hover { background: var(--tierra-claro); transform: translateY(-2px); }
.ver-mas-count { font-size: 0.78rem; opacity: 0.8; font-weight: 400; }

/* Botón Mostrar menos */
.btn-colapsar {
  background: transparent;
  border: 1px solid rgba(122,171,132,0.4);
  color: #8ab09a; font-family: 'Jost', sans-serif;
  font-size: 0.85rem; font-weight: 500;
  padding: 0.7rem 1.6rem; border-radius: 30px; cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
}
.btn-colapsar:hover { border-color: var(--verde-claro); color: var(--arena); }

/* Hint "selecciona un tour" */
.galeria-hint {
  color: #6a9a7e; font-size: 0.85rem; font-style: italic;
  text-align: center; width: 100%; margin-top: 0.5rem;
}

/* Responsive: ocultar badge en pantallas muy pequeñas */
@media (max-width: 360px) {
  .galeria-tour-badge { display: none; }
}
