  /* ================================
       1. RESET Y ESTILOS BÁSICOS
    ================================ */
    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    html {
      scroll-behavior: smooth;
    }
    body {
      font-family: "Helvetica Neue", Arial, sans-serif;
      background-color: var(--color-dark);
      color: #282828;
      line-height: 1.5;
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    a {
      text-decoration: none;
      color: inherit;
    }

    /* ================================
       2. VARIABLES DE COLOR
       Paleta: #EF414E (base), #6BA1ED, #A32532, #BADFED
    ================================ */
    :root {
      --color-base: #EF414E;
      --color-sec1: #6BA1ED;
      --color-sec2: #A32532;
      --color-sec3: #BADFED;
      --color-dark: #282828;
      --color-white: #FFFFFF;
    }

    /* ================================
       3. CONTENEDOR GENERAL
    ================================ */
    .container {
      /* Ajustes para que sea responsive */
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem; /* Espacio lateral adaptable */
    }

    /* ================================
       HEADER y MENÚ DE NAVEGACIÓN
    ================================ */
    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: fixed; /* Fijo en la parte superior */
      top: 10px;
      left: 12%;
      width: 100%;
      height: 60px;
      background-color: var(--color-dark);
      z-index: 1000;
       border-radius: 20px ;
    }
    
    .logo img {
      height: 40px;
      width: auto;
    }
    nav ul {
      list-style: none;
      display: flex;
      gap: 1rem;
      flex-wrap: wrap; /* Permite que los links bajen de línea en pantallas pequeñas */
    }
    nav ul li a {
      padding: 0.5rem 1rem;
      border-radius: 4px;
      transition: background 0.3s;
      color: var(--color-white);
    }
    nav ul li a:hover {
      background: rgba(0,0,0,0.1);
    }
    /* Botón de CTA */
    .hero-cta {
      background: var(--color-base);
      color: var(--color-white);
      padding: 0.5rem 1rem;
      border-radius: 4px;
      font-weight: 500;
      transition: background 0.3s;
    }
    .hero-cta:hover {
      background: var(--color-sec2);
    }

    /* ================================
       SECCIÓN 1: HERO
    ================================ */
    .hero-section {
      margin-top: 80px; /* Espacio para el header fijo */
      /* Eliminar la altura fija para adaptarse mejor al contenido en móviles */
      /* height: calc(100vh - 80px); */
      background:
        linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('https://travelconcepts.travel/images/bg1.webp') no-repeat center/cover;
      color: var(--color-white);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 4rem 0; /* Añade un padding vertical */
    }
    /* Contenido del hero */
    .hero-content {
      text-align: center;
    }
    .hero-content h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
    }
    .hero-content p {
      font-size: 1.1rem;
      max-width: 800px;
      margin: 0 auto 1rem auto;
      font-family: "Helvetica Neue", Arial, sans-serif;
      font-weight: bold;
    }
    .hero-slogan {
      font-size: 1.3rem;
      font-weight: bold;
      margin-bottom: 1rem;
    }

    /* ================================
       SECCIÓN 2: NOSOTROS
    ================================ */
    .about-section {
      padding: 4rem 1rem;
      background: #f9f9f9;
      color: var(--color-dark);
    }
    .about-section h2 {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 2rem;
    }
    .about-content {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }
    .about-content p {
      margin-bottom: 1rem;
      line-height: 1.6;
      text-align: left;
    }
    .mission-vision {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-top: 2rem;
    }
    .mission-vision div {
      background: #fff;
      padding: 1rem;
      border-left: 4px solid var(--color-base);
    }
    .achievements {
      margin-top: 2rem;
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      flex-wrap: wrap;
    }
    .achievement {
      background: var(--color-base);
      color: var(--color-white);
      padding: 0.75rem 1rem;
      border-radius: 4px;
      font-weight: 500;
    }

    /* ================================
       SECCIÓN 3: AGENCIAS
    ================================ */
    .agencies-section {
      padding: 4rem 1rem;
      background: var(--color-white);
      text-align: center;
    }
    .agencies-section h2 {
      font-size: 2.5rem;
      margin-bottom: 2rem;
      color: var(--color-dark);
    }
    .agencies-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    .agency-card {
      background: #f5f5f5;
      padding: 1.5rem;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }
    .agency-card:hover {
      transform: translateY(-3px);
    }
    .agency-card h3 {
      margin-bottom: 0.75rem;
      color: var(--color-base);
    }
    .agency-card p {
      font-size: 0.95rem;
      margin-bottom: 1rem;
      text-align: left;
    }
    .agency-card a {
      display: inline-block;
      background: var(--color-base);
      color: var(--color-white);
      padding: 0.5rem 1rem;
      border-radius: 4px;
      transition: background 0.3s;
      font-weight: 500;
    }
    .agency-card a:hover {
      background: var(--color-sec2);
    }

    /* ================================
       SECCIÓN 4: EVENTOS Y ACTIVIDADES
    ================================ */
    .events-section {
      padding: 4rem 1rem;
      background: #ececec;
      text-align: center;
    }
    .events-section h2 {
      font-size: 2.5rem;
      margin-bottom: 2rem;
      color: var(--color-dark);
    }
    .scroller-container {
      display: flex;
      gap: 2rem;
      overflow-x: auto;
      padding: 1rem 0;
      scrollbar-width: none; /* Firefox */
    }
    .scroller-container::-webkit-scrollbar {
      display: none; /* Chrome, Safari, Opera */
    }
    .scroller-item {
      flex: 0 0 auto;
      width: 300px;
      height: 400px;
      background-size: cover;
      background-position: center;
      border-radius: 8px;
      position: relative;
      transition: transform 0.3s;
    }
    .scroller-item:hover {
      transform: translateY(-3px);
    }
    .scroller-overlay {
      background: rgba(0,0,0,0.4);
      color: var(--color-white);
      padding: 1rem;
      border-radius: 4px;
      position: absolute;
      bottom: 1rem;
      left: 1rem;
      right: 1rem;
    }
    .scroller-overlay h3 {
      margin-bottom: 0.5rem;
      font-size: 1.2rem;
    }
    .scroller-overlay p {
      font-size: 0.9rem;
    }

    /* ================================
       SECCIÓN 5: AFILIADOS
    ================================ */
    .affiliates-section {
      padding: 4rem 1rem;
      background: var(--color-white);
      text-align: center;
    }
    .affiliates-section h2 {
      font-size: 2.5rem;
      margin-bottom: 2rem;
      color: var(--color-dark);
    }
    .affiliates-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
      align-items: center;
    }
    .affiliate-card {
      background: #f9f9f9;
      padding: 1rem;
      border-radius: 4px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    .affiliate-card img {
      max-height: 50px;
      margin: 0 auto;
    }
    .affiliate-card p {
      margin-top: 0.5rem;
      font-size: 0.9rem;
      color: var(--color-dark);
    }

    /* ================================
       SECCIÓN 6: PRENSA
    ================================ */
    .press-section {
      padding: 4rem 1rem;
      background: #f5f5f5;
      text-align: center;
    }
    .press-section h2 {
      font-size: 2.5rem;
      margin-bottom: 2rem;
      color: var(--color-dark);
    }
    .press-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    .press-card {
      background: var(--color-white);
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      overflow: hidden;
      text-align: left;
      display: flex;
      flex-direction: column;
    }
    .press-card img {
      width: 100%;
      object-fit: cover;
    }
    .press-card .press-content {
      padding: 1.5rem;
    }
    .press-card h3 {
      margin-bottom: 0.5rem;
      font-size: 1.2rem;
      color: var(--color-dark);
    }
    .press-card p {
      font-size: 0.95rem;
      color: #555;
      margin-bottom: 1rem;
    }
    .press-card a {
      color: var(--color-base);
      font-weight: 600;
      transition: color 0.3s;
    }
    .press-card a:hover {
      color: var(--color-sec2);
    }

    /* ================================
       SECCIÓN 7: CONTACTO
    ================================ */
    .contact-section {
      background: linear-gradient(90deg, var(--color-base), var(--color-sec1));
      color: var(--color-white);
      padding: 4rem 1rem;
      text-align: center;
    }
    .contact-section h2 {
      font-size: 2.5rem;
      margin-bottom: 2rem;
    }
    .contact-info {
      margin-bottom: 2rem;
      font-size: 1.1rem;
      line-height: 1.6;
    }
    .contact-form-container {
      max-width: 600px;
      margin: 0 auto;
      background: rgba(255,255,255,0.1);
      padding: 2rem;
      border-radius: 8px;
      text-align: left;
    }
    .contact-form-container label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 600;
    }
    .contact-form-container input,
    .contact-form-container textarea {
      width: 100%;
      padding: 0.75rem;
      margin-bottom: 1rem;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 1rem;
    }
    .contact-form-container button {
      background: var(--color-dark);
      color: var(--color-white);
      border: none;
      padding: 0.75rem 1.5rem;
      border-radius: 4px;
      cursor: pointer;
      font-weight: 600;
      transition: background 0.3s;
    }
    .contact-form-container button:hover {
      background: var(--color-sec2);
    }

    /* ================================
       FOOTER
    ================================ */
    .main-footer {
      background: var(--color-dark);
      color: var(--color-white);
      padding: 2rem 1rem 0 1rem;
    }
    .footer-top {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: space-between;
      margin-bottom: 2rem;
    }
    .footer-logo-section {
      flex: 1;
      min-width: 200px;
    }
    .footer-logo img {
      height: 40px;
      margin-bottom: 1rem;
    }
    .footer-columns {
      flex: 2;
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      justify-content: flex-end;
    }
    .footer-column {
      min-width: 120px;
    }
    .footer-column h4 {
      font-size: 1rem;
      margin-bottom: 1rem;
      font-weight: 600;
    }
    .footer-column ul {
      list-style: none;
    }
    .footer-column li {
      margin-bottom: 0.5rem;
    }

    .footer-column a {
      transition: color 0.3s;
    }
    .footer-column a:hover {
      color: var(--color-sec1);
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.2);
      padding: 1rem 0;
      text-align: center;
      font-size: 0.9rem;
    }

    /* Patrocinadores (Hero Sponsors) */
    .hero-sponsors {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      padding-bottom: 2rem;
    }
    .hero-sponsors img {
      max-width: 180px;
      opacity: 0.8;
      transition: opacity 0.3s;
    }
    .hero-sponsors img:hover {
      opacity: 1;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: fixed; /* Fijo en la parte superior */
      top: 10px;
        left: 10px;
      width: 100%;
      height: 60px;
      background-color: var(--color-dark);
      z-index: 1000;
           border-radius: 20px ;
      }
      }
      /* Ajusta el tamaño del h1 en móviles para que no se descuadre */
      .hero-content h1 {
        font-size: 2rem;
      }
      .mission-vision {
        flex-direction: column;
      }
      