/* RESET */
.mundial-etn * { box-sizing: border-box; text-align: center; }

/* TIPOGRAFÍA BASE */
.mundial-etn {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: #002f4b;
  line-height: 1.6;
}

/* CONTENEDOR GENERAL */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* === HERO MEJORADO === */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.2));
  z-index: 1;
}


.hero-subtext {
  font-size: 1rem;
  color: #e0f4ff;
  margin-top: 1.5rem;
  line-height: 1.5;
  max-width: 750px;
  margin-inline: auto;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Overlay con gradiente dinámico */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 40%,
    rgba(0, 0, 0, 0.15) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 2rem;
  margin-inline: auto;
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  color: #f0f8ff;
  line-height: 1.6;
  margin-bottom: 2.2rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.boton {
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  padding: 10px 18px;
  transition: all 0.3s ease;
}

/* Botón principal */
.btn-primary {
  background-color: #006c9a;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 108, 154, 0.25);
}
.btn-primary:hover {
  background-color: #004a66;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 108, 154, 0.4);
}

/* Botón secundario */
.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}
.btn-outline:hover {
  background: #fff;
  color: #003857;
  transform: translateY(-3px);
}

/* Adaptación móvil */
@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}



.intro-benefits {
  max-width: 760px;
  margin: 0 auto 2rem;
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}


/* BENEFICIOS */
.beneficios {
  background: #f6fafc;
  text-align: center;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-item img {
  width: 50px;
  margin: 0 auto;
}

.benefit-item h3 {
  color: #006c9a;
  margin-bottom: 0.5rem;
}

/* RUTAS */
.rutas {
  background: #fff;
}

.rutas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.rutas-grid article {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.rutas-grid article:hover { transform: translateY(-4px); }

.rutas-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.rutas-grid img,
.tip-card img {
  border-radius: 1rem 1rem 0 0;
}


.rutas-grid h3 {
  margin: 1rem 1rem 0.5rem;
  color: #003857;
}

.rutas-grid p {
  margin: 0 1rem 1rem;
}

.btn-link {
  margin-left: 1rem;
  color: #006c9a;
  font-weight: 600;
  text-decoration: none;
}

.btn-link:hover { text-decoration: underline; }

/* MAPA */
.mapa {
  background: #f5f7fa;
  text-align: center;
}

.mapa img {
  max-width: 800px;
  width: 100%;
  border-radius: 10px;
  margin: 2rem 0;
}

.map-legend {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.map-legend span {
  background: #006c9a;
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

/* CTA FINAL */
.cta {
  background: linear-gradient(90deg, #003857, #006c9a);
  text-align: center;
  color: #fff;
  padding: 4rem 1.5rem;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}
.faqs {
  background-color: #f0f5f8;
  padding: 4rem 1rem;
}

.faqs h2 {
  text-align: center;
  color: #003857;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.faqs .intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: #444;
}

.faq-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.faq-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.faq-icon {
  font-size: 1.8rem;
  color: #006c9a;
  margin-right: 1rem;
  flex-shrink: 0;
}

.faq-content h3 {
  margin: 0 0 0.5rem;
  color: #006c9a;
  font-size: 1.15rem;
}

.faq-content p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
}


.travel-tips {
  background-color: #f9fafb;
  padding: 4rem 1rem;
  text-align: center;
}

.travel-tips h2 {
  color: #003857;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.travel-tips .intro {
  max-width: 680px;
  margin: 0 auto 2rem;
  color: #444;
}

.tips-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.tip-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-align: left;
  transition: transform 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-4px);
}

.tip-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.tip-card h3 {
  color: #006c9a;
  font-size: 1.25rem;
  margin: 1rem;
}

.tip-card p {
  color: #555;
  margin: 0 1rem 1.5rem;
  line-height: 1.5;
}


section {
  scroll-margin-top: 80px;
}
