 /* HEADER */
    .header-titulo {
      position: relative;
      height: 250px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .header-titulo::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.45);
      z-index: 1;
    }
    .header-titulo .imagenes-fondo {
      display: flex;
      width: calc(200%);
      height: 100%;
      animation: mover 30s linear infinite;
    }
    .header-titulo .imagenes-fondo img {
      flex: 1 0 auto;
      object-fit: cover;
      height: 100%;
      width: 20%;
    }
    @keyframes mover {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }
    .header-titulo h1 {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -90%);
      color: #fff;
      font-size: 68px;
      font-weight: 900;
      text-align: center;
      z-index: 2;
      text-shadow: 4px 4px 12px rgba(0,0,0,0.9);
      letter-spacing: 3px;
      text-transform: uppercase;
      white-space: nowrap;
    }

    /* NAVBAR */
    nav {
  background: #031C9E;
  color: white;
  padding: 20px;
  display: flex;
  justify-content: center;
  width: 100%;        /* 👈 hace que ocupe todo el ancho */
  margin: 0;          /* elimina márgenes */
  box-sizing: border-box;
}
    nav a {
      color: white;
      margin: 0 20px;
      text-decoration: none;
      font-weight: bold;
      font-size: 20px;
      transition: color 0.3s, transform 0.2s;
    }
    nav a:hover {
      text-decoration: underline;
      transform: scale(1.1);
    }

    /* GENERAL */
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: #f4f4f9;
      display: flex;
      flex-direction: column; /* 👈 importante para apilar */
      align-items: center;
    }

    /* CARD */
    .card-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      max-width: 1100px;
      width: 100%;
      padding: 35px;
      border-radius: 20px;
      background: #ffffff;
      box-shadow: 0 15px 40px rgba(0,0,0,0.25);
      animation: fadeInUp 1s ease;
      margin: 40px auto;
    }
    .images-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
 .tour-img {
  width: 100%;
  height: 300px;   /* 👈 antes 240px */
  object-fit: cover;
  border-radius: 14px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeSlide 0.8s ease forwards;
}

    .img-1 { animation-delay: 0.2s; }
    .img-2 { animation-delay: 0.4s; }
    .img-3 { animation-delay: 0.6s; }
    .img-4 { animation-delay: 0.8s; }
    .tour-img:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 20px rgba(0,0,0,0.35);
      transition: all 0.4s ease;
    }

    .info-section {
  display: flex;
  flex-direction: column;
  justify-content: center;  /* 👈 centra verticalmente el contenido */
}

.title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 15px;
  text-align: center;       /* 👈 centrado horizontal */
}

    .description {
      font-size: 1.05rem;
      line-height: 1.6;
      color: #555;
      margin-bottom: 18px;
    }
    .subtitle {
      font-size: 1.1rem;
      font-weight: 700;
      color: #1e9e4a;
      margin-top: 14px;
      margin-bottom: 6px;
    }
    .detail {
      font-size: 1rem;
      color: #444;
      margin: 0 0 10px;
    }
    .services {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6px 20px;
      margin-bottom: 18px;
    }
    .services p {
      font-size: 0.95rem;
      color: #333;
      display: flex;
      align-items: center;
    }
    .price {
      margin-top: 20px;
      font-size: 1.8rem;
      font-weight: bold;
      color: #1e9e4a;
    }
    .price span {
      font-size: 1rem;
      font-weight: normal;
      color: #666;
    }
    .reserve-btn {
      margin-top: 25px;
      padding: 14px;
      font-size: 1.2rem;
      font-weight: bold;
      color: #fff;
      background: #1e9e4a;
      border: none;
      border-radius: 14px;
      cursor: pointer;
      box-shadow: 0 6px 15px rgba(0,0,0,0.25);
      transition: transform 0.3s ease, background 0.3s ease;
    }
    .reserve-btn:hover {
      background: #157a38;
      transform: translateY(-3px);
    }

    /* ANIMACIONES */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(50px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeSlide {
      to { opacity: 1; transform: translateY(0); }
    }
    .animate-fade-in { opacity: 0; animation: fadeIn 1s forwards; }
    @keyframes fadeIn { to { opacity: 1; } }
    .animate-slide-in {
      opacity: 0; transform: translateX(-30px);
      animation: slideIn 0.8s forwards;
    }
    @keyframes slideIn { to { opacity: 1; transform: translateX(0); } }
    .animate-pop {
      opacity: 0; transform: scale(0.8);
      animation: popIn 0.5s forwards;
    }
    .animate-pop:nth-child(1) { animation-delay: 0.2s; }
    .animate-pop:nth-child(2) { animation-delay: 0.4s; }
    .animate-pop:nth-child(3) { animation-delay: 0.6s; }
    .animate-pop:nth-child(4) { animation-delay: 0.8s; }
    @keyframes popIn { to { opacity: 1; transform: scale(1); } }
    .animate-pulse { animation: pulse 2s infinite; }
    @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.05); }
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .card-container { grid-template-columns: 1fr; }
      .title { font-size: 2rem; }
      .price { font-size: 1.5rem; }
    }

    /* FOOTER */
    footer {
  background: #222;
  color: white;
  padding: 30px 20px 10px;
  width: 100%;
  padding-left: 60px; /* 👈 mueve contenido hacia la derecha */
}

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-bottom: 20px;
    }
    .footer-col h3 {
      margin-bottom: 10px;
      font-size: 18px;
      border-bottom: 2px solid #444;
      padding-bottom: 5px;
    }
    .footer-col p, .footer-col a {
      font-size: 14px;
      color: #ddd;
      text-decoration: none;
      margin: 5px 0;
      display: block;
    }
    .footer-col a:hover { color: #0dc143; }
    .social-icons {
      display: flex;
      gap: 10px;
      margin-top: 10px;
    }
    .social-icons img {
      width: 28px; height: 28px;
      cursor: pointer;
      transition: transform 0.2s;
    }
    .social-icons img:hover { transform: scale(1.2); }
    .footer-bottom {
      text-align: center;
      font-size: 13px;
      color: #aaa;
      border-top: 1px solid #444;
      padding-top: 10px;
    }