:root {
  --verde: #3a8c2f;
  --verde-oscuro: #256120;
  --verde-claro: #6ab84e;
  --amarillo: #f5c518;
  --rojo: #c0392b;
  --azul: #1a6fa8;
  --cafe: #7b4f1e;
  --blanco: #f9f9f6;
  --gris: #f2f2ee;
  --texto: #1e1e1e;
}

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

body {
  font-family: 'Nunito', sans-serif;
  background: var(--blanco);
  color: var(--texto);
  overflow-x: hidden;
}

/* ===== PROMO BANNER ===== */
#promo-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 320px;
  background: linear-gradient(135deg, #256120, #6ab84e);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  z-index: 9999;
  overflow: hidden;
  animation: slideInBanner 0.6s cubic-bezier(.22,.68,0,1.2);
  display: none;
}
#promo-banner.show { display: block; }
@keyframes slideInBanner {
  from { transform: translateY(120px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.banner-header {
  background: var(--amarillo);
  color: var(--verde-oscuro);
  font-family: 'Abril Fatface', cursive;
  font-size: 0.75rem;
  padding: 6px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.banner-close {
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--verde-oscuro);
  font-weight: 900;
  line-height: 1;
}
.banner-body {
  padding: 16px;
  color: white;
}
.banner-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.banner-body p {
  font-size: 0.82rem;
  opacity: 0.9;
  margin-bottom: 12px;
  line-height: 1.4;
}
.banner-cta {
  display: inline-block;
  background: var(--amarillo);
  color: var(--verde-oscuro);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s;
}
.banner-cta:hover { transform: scale(1.05); }
.banner-logo-small {
  font-family: 'Abril Fatface', cursive;
  font-size: 0.7rem;
  opacity: 0.7;
  margin-top: 10px;
  display: block;
  text-align: right;
}

/* ===== HEADER ===== */
header {
  background: linear-gradient(180deg, #3a8c2f 0%, #4da03a 60%, #5eb844 100%);
  text-align: center;
  padding: 32px 20px 0;
  position: relative;
  overflow: hidden;
}
header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.logo-container {
  position: relative;
  display: inline-block;
  z-index: 2;
}
.logo-container img {
  height: 120px;
  max-width: 320px;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.3));
  animation: fadeDown 0.8s ease forwards;
  
}
@keyframes fadeDown {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.header-tagline {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 8px;
  margin-bottom: 20px;
  animation: fadeIn 1.2s ease forwards;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Quita el subrayado del enlace y añade un efecto de escala al pasar el mouse */
.logo-link {
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.05); /* El logo crece un poquito al poner el mouse */
}

.logo-link img {
  cursor: pointer; /* Cambia el cursor a la "manito" de clic */
}
/* ===== NAVBAR ===== */
nav {
  background: var(--verde-oscuro);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 12px rgba(0,0,0,0.3);
}
nav a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 14px 18px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 3px;
  background: var(--amarillo);
  transition: left 0.2s, right 0.2s;
}
nav a:hover { color: var(--amarillo); }
nav a:hover::after { left: 12%; right: 12%; }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 520px;
  overflow: hidden;
}
.hero-slides { position: relative; height: 100%; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
  /* ... tus otros estilos ... */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
  /* Mejora el suavizado de la imagen al escalar */
  image-rendering: -webkit-optimize-contrast; 
  image-rendering: crisp-edges;
}
.hero-slide.active { opacity: 1; }
.hero-slide:nth-child(1) { background-image: linear-gradient(135deg, #1a5e2a 0%, #3a8c2f 40%, #6ab84e 100%); }
.hero-slide:nth-child(2) { background-image: linear-gradient(135deg, #0d3b6b 0%, #1a6fa8 50%, #4ab3e8 100%); }
.hero-slide:nth-child(3) { background-image: linear-gradient(135deg, #6b1a1a 0%, #c0392b 50%, #e8744b 100%); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.55) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 20px;
}
.hero-overlay h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: white;
  text-shadow: 0 3px 12px rgba(0,0,0,0.4);
  margin-bottom: 14px;
  line-height: 1.1;
}
.hero-overlay p {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  font-weight: 600;
  max-width: 580px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
  margin-bottom: 22px;
}
.hero-btn {
  background: var(--amarillo);
  color: var(--verde-oscuro);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 13px 32px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.5px;
}
.hero-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
}
.hero-dot.active { background: white; transform: scale(1.3); }

/* ===== SECTIONS GENERAL ===== */
section { padding: 70px 20px; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--verde-oscuro);
  text-align: center;
  margin-bottom: 8px;
}
.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1rem;
  margin-bottom: 48px;
  font-weight: 600;
}
.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--verde), var(--amarillo));
  border-radius: 4px;
  margin: 0 auto 16px;
}

/* ===== GUIA INTERACTIVA ===== */
#guia {
  background: var(--gris);
}
.guia-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.guia-tab {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--verde);
  background: white;
  color: var(--verde-oscuro);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.3px;
}
.guia-tab:hover, .guia-tab.active {
  background: var(--verde);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(58,140,47,0.35);
}
.guia-content { display: none; }
.guia-content.active { display: block; animation: fadeInUp 0.5s ease; }
@keyframes fadeInUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.dept-hero {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 220px;
  margin-bottom: 32px;
  display: flex;
  align-items: flex-end;
}
.dept-bg-antioquia { background: linear-gradient(135deg, #c0392b, #e74c3c, #f39c12); }
.dept-bg-cundinamarca { background: linear-gradient(135deg, #2980b9, #1a6fa8, #16a085); }
.dept-bg-eje { background: linear-gradient(135deg, #27ae60, #2ecc71, #f1c40f); }
.dept-bg-caribe { background: linear-gradient(135deg, #e67e22, #f39c12, #f1c40f); }
.dept-bg-pacifico { background: linear-gradient(135deg, #1abc9c, #16a085, #2980b9); }
.dept-hero-text {
  padding: 24px;
  color: white;
  z-index: 2;
  position: relative;
}
.dept-hero-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.dept-hero-text p {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 600;
  margin-top: 4px;
}
.dept-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='rgba(255,255,255,0.05)' d='M44.7,-76.4C58.6,-69.1,71,-59,79.4,-45.8C87.7,-32.6,92,-16.3,90.8,-0.7C89.6,14.9,82.8,29.8,73.8,42.3C64.8,54.8,53.5,64.9,40.5,72.1C27.5,79.3,13.8,83.6,-0.7,84.8C-15.2,86,-30.4,84.1,-43.5,77.4C-56.6,70.7,-67.6,59.3,-74.6,45.8C-81.5,32.3,-84.5,16.2,-84.2,0.2C-83.9,-15.8,-80.4,-31.6,-73.2,-45.1C-66,-58.6,-55.2,-69.9,-42.2,-77.3C-29.2,-84.7,-14.6,-88.3,0.4,-88.9C15.4,-89.6,30.7,-83.7,44.7,-76.4Z' transform='translate(100 100)'/%3E%3C/svg%3E");
  background-size: cover;
  opacity: 0.4;
}
.atractivos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.atractivo-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.atractivo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}
.atractivo-img {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.atractivo-info { padding: 16px; }
.atractivo-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--verde-oscuro);
  margin-bottom: 4px;
}
.atractivo-info p {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.4;
}
.atractivo-tag {
  display: inline-block;
  background: var(--gris);
  color: var(--verde);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== MODAL ATRACTIVO ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: white;
  border-radius: 24px;
  max-width: 520px;
  width: 100%;
  overflow: hidden;
  animation: popIn 0.4s cubic-bezier(.22,.68,0,1.2);
}
@keyframes popIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.modal-top {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
}
.modal-close-btn {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(255,255,255,0.8);
  border: none;
  border-radius: 50%;
  width: 34px; height: 34px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 900;
  color: #333;
}
.modal-body { padding: 24px; }
.modal-body h2 {
  font-family: 'Playfair Display', serif;
  color: var(--verde-oscuro);
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.modal-body p {
  color: #555;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.modal-info-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.modal-info-pill {
  background: var(--gris);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--verde-oscuro);
}
.modal-cta {
  display: block;
  text-align: center;
  background: var(--verde);
  color: white;
  padding: 12px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
  width: 100%;
  font-size: 0.95rem;
}
.modal-cta:hover { background: var(--verde-oscuro); }

/* ===== DESTINOS DESTACADOS ===== */
#destinos .section-title { color: var(--amarillo); }
#destinos { background: #1a5e2a; }
.destinos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.destino-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 320px;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  transition: transform 0.3s;
}
.destino-card:hover { transform: scale(1.03); }
.destino-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
}
.destino-card:hover .destino-bg { transform: scale(1.08); }
.destino-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%);
}
.destino-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  color: white;
}
.destino-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.destino-info p { font-size: 0.83rem; opacity: 0.85; }
.destino-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--amarillo);
  color: var(--verde-oscuro);
  font-weight: 800;
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

/* ===== AGENCIA DE VIAJES ===== */
#agencia { background: var(--verde-oscuro); color: white; }
#agencia .section-title { color: var(--amarillo); }
#agencia .section-subtitle { color: rgba(255,255,255,0.7); }
.paquetes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.paquete-card {
    /* Ajustes de tamaño y forma */
    min-height: 300px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: white;
    
    /* Propiedades de fondo que compartirán todas */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

/* El filtro oscuro para que el texto se lea siempre bien */
.paquete-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    z-index: 1;
}

/* Asegura que el contenido esté sobre el filtro */
.paquete-card h3, .paquete-card .paquete-precio, .paquete-card .hero-btn {
    position: relative;
    z-index: 2;
}
.paquete-card:hover {
  transform: translateY(-4px);
}

.paquete-icon { font-size: 2.5rem; margin-bottom: 14px; }
.paquete-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--amarillo);
  margin-bottom: 8px;
}
.paquete-card p { font-size: 0.87rem; opacity: 0.8; line-height: 1.5; margin-bottom: 16px; }
.paquete-precio {
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 14px;
}
.paquete-precio span { font-size: 0.85rem; opacity: 0.7; font-weight: 400; }
.paquete-btn {
  background: var(--amarillo);
  color: var(--verde-oscuro);
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  transition: transform 0.2s;
  width: 100%;
}
.paquete-btn:hover { transform: scale(1.04); }

/* ===== QUIENES SOMOS ===== */
#nosotros { background: var(--gris); }
.nosotros-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
@media(max-width: 720px) {
  .nosotros-inner { grid-template-columns: 1fr; gap: 30px; }
}
.nosotros-visual {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.nosotros-visual-inner {
  background: linear-gradient(135deg, var(--verde), var(--verde-claro));
  min-width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 3px;
  text-align: center;
  color: white;
}
.nosotros-logo-big {
  font-family: 'Abril Fatface', cursive;
  font-size: 2.2rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.nosotros-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  margin-top: 10px;
}
.stat-box {
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}
.stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  font-family: 'Abril Fatface', cursive;
}
.stat-label { font-size: 0.72rem; opacity: 0.85; font-weight: 600; }
.nosotros-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--verde-oscuro);
  margin-bottom: 6px;
}
.nosotros-text .accent-line {
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, var(--verde), var(--amarillo));
  border-radius: 4px;
  margin-bottom: 20px;
}
.nosotros-text p {
  color: #555;
  line-height: 1.75;
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.valores-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.valores-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--verde-oscuro);
  font-size: 0.9rem;
}
.valor-icon {
  width: 36px;
  height: 36px;
  background: var(--verde);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ===== CONTACTO ===== */
#contacto { background: white; }
.contacto-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.contacto-inner p {
  color: #666;
  font-size: 1rem;
  margin-bottom: 32px;
  line-height: 1.6;
}
.contacto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 36px;
}
.contacto-card {
  background: var(--gris);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: transform 0.2s;
}
.contacto-card:hover { transform: translateY(-3px); }
.contacto-icon { font-size: 1.8rem; margin-bottom: 8px; }
.contacto-card h4 { font-size: 0.8rem; font-weight: 700; color: var(--verde-oscuro); margin-bottom: 4px; }
.contacto-card p { font-size: 0.8rem; color: #777; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  text-align: left;
}
@media(max-width: 500px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid .full { grid-column: 1 / -1; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 12px 14px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  transition: border 0.2s;
  background: var(--blanco);
  outline: none;
  color: var(--texto);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--verde); }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #555;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-submit {
  grid-column: 1 / -1;
  background: var(--verde);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.5px;
}
.form-submit:hover { background: var(--verde-oscuro); transform: translateY(-2px); }

/* ===== FOOTER ===== */
footer {
    background-color: #1a1a1a;
    padding: 40px 20px;
    color: white;
    width: 100%;
}

.footer-content {
    position: relative; /* Base para posicionar los logos */
    max-width: 800px;   /* Limita el ancho para que no se pierdan a los lados */
    margin: 0 auto;     /* Centra todo el bloque en la pantalla */
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-info {
    text-align: center;
}

.footer-logos {
    position: absolute;
    right: -100px;           /* Los pega al borde derecho del contenedor de 800px */
    display: flex;
    gap: 15px;
    align-items: center;
}

.logo-partner {
    height: 90px;       /* Tamaño más sutil */
    width: auto;
    opacity: 0.8;       /* Para que no distraigan tanto del texto principal */
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: bold;
    color: #f1c40f;
    margin-bottom: 5px;
}
footer p { font-size: 0.82rem; margin-bottom: 6px; }
.footer-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin: 14px 0; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.78rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--amarillo); }
.social-row { display: flex; justify-content: center; gap: 12px; margin: 14px 0; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  background: rgba(255,255,255,0.08);
  color: white;
  text-decoration: none;
  transition: background 0.2s;
}
.social-btn:hover { background: var(--verde); }


/* ===== ANUNCIATE BUTTON ===== */
.anunciate-floating {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--amarillo);
  color: var(--verde-oscuro);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 9997;
  border: none;
  transition: transform 0.2s;
  letter-spacing: 0.3px;
  font-family: 'Nunito', sans-serif;
}
.anunciate-floating:hover { transform: translateY(-3px); }

/* ===== RESPONSIVE ===== */
@media(max-width: 768px) {
  .hero { height: 380px; }
  nav a { padding: 11px 12px; font-size: 0.7rem; }
  .atractivos-grid { grid-template-columns: 1fr 1fr; }
  .destinos-grid { grid-template-columns: 1fr; }
  .footer-content {
        flex-direction: column; /* Apila los elementos uno arriba de otro */
        max-width: 100%;
        gap: 20px;            /* Espacio entre el texto y los logos */
    }

    .footer-logos {
        position: static;     /* Quita la posición absoluta para que no floten */
        justify-content: center; /* Centra los logos horizontalmente */
        margin-top: 10px;
    }

    .footer-info {
        text-align: center;   /* Asegura que el texto esté bien centrado */
    }

    .logo-partner {
        height: 40px;         /* Los hace un poquito más pequeños en móvil */
    }
}
/* ============================================================
   LÓGICA DE NAVEGACIÓN SPA (SOFT SCROLL ALTERNATIVE)
   ============================================================ */

/* 1. Estado inicial de las secciones y el hero */
/* Asegúrate de que esto esté al final de tu style.css */
section, .hero {
  display: none; 
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Esta clase es vital para que se vea el contenido */
section.active, .hero.active {
  display: block !important;
}

section.visible, .hero.visible {
  opacity: 1;
  transform: translateY(0);
}