
    body {
      margin: 0;
      font-family: 'Open Sans', sans-serif;
      color: #0b0606;
      background-image: url('../img/VISTA DESDE CERRITO.jpg');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
    }

    header {
      background-image: url('../img/arco2.jpg');
      background-size: cover;
      background-position: center;
      position: relative;
      color: white;
      text-align: center;
      height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 10px solid rgba(224, 118, 52, 0.85);
      box-sizing: border-box;
    }

    header::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 1;
    }

    header .contenido-header {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      line-height: 1;
    }

    .cabaña-label,
    .ubicacion-label {
      font-family: 'Arial Black', Arial, sans-serif;
      font-size: 2rem;
      text-transform: uppercase;
      margin: 0;
    }

    .titulo-principal {
      font-family: 'Arial Black', Arial, sans-serif;
      font-size: 5rem;
      font-weight: bold;
      margin: 0.2rem 0;
    }

    .pueblo-texto {
      margin-top: 1rem;
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      font-style: italic;
      letter-spacing: 1px;
    }

    .reservar-btn {
      position: absolute;
      top: 20px;
      right: 20px;
      background-color: #ebd10f; /*color boton*/ 
      color: #000;
      padding: 0.6rem 1.2rem;
      border: none;
      border-radius: 5px;
      font-size: 1rem;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      transition: background-color 0.3s;
      z-index: 3;
    }

    .reservar-btn:hover {
      background-color: #e0dd2b; /*color al apoyarse*/ 
    }

    .hero {
      margin-top: 2rem;
      text-align: center;
      padding: 2rem;
      background-color: rgba(224, 118, 52, 0.85);
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      border-radius: 10px;
      border: 10px solid rgba(224, 118, 52, 0.85);
      box-sizing: border-box;
    }

    .hero h2 {
      font-size: 1.8rem;
      color: #0a0602;
      margin-bottom: 1rem;
    }

    .hero p {
      font-size: 1.2rem;
      margin: 1rem auto;
      text-align: left;
      line-height: 1.5;
      white-space: pre-line;
    }

    .gallery {
      position: relative;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .gallery-slider {
  width: 100%;
  max-width: 400px;  /* o 600px si querés más grande */
  aspect-ratio: 2/3;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  border-radius: 10px;
}


    .gallery-slider img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      opacity: 0;
      transition: opacity 1s;
      border-radius: 10px;
    }

    .gallery-slider img.active {
      opacity: 1;
    }

    .gallery-buttons {
      margin-top: 1.5rem;
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .gallery .gallery-btn,
    .extra-btn {
      background-color: #ebd10f; /*color boton*/
      color: #000;
      padding: 0.6rem 1.2rem;
      border: none;
      border-radius: 5px;
      font-size: 1rem;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      transition: background-color 0.3s;
      cursor: pointer;
    }

    .gallery .gallery-btn:hover,
    .extra-btn:hover {
      background-color: #e0dd2b; /*color al apoyarse*/
    }

    .extra-section {
      display: none;
      background-color: rgba(224, 118, 52, 0.85);
      max-width: 1000px;
      margin: 2rem auto;
      padding: 2rem;
      border-radius: 10px;
      border: 10px solid rgba(224, 118, 52, 0.85);
      box-sizing: border-box;
    }

    .extra-section h2 {
      font-size: 1.7rem;
      color: #0a0602;
      margin-bottom: 1rem;
      text-align: center;
    }

    .extra-wrapper {
      display: flex;
      gap: 2rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .extra-gallery {
      width: 320px;
      height: 480px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
      flex-shrink: 0;
    }

    .extra-gallery img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      opacity: 0;
      transition: opacity 1s;
      border-radius: 10px;
    }

    .extra-gallery img.active {
      opacity: 1;
    }

    .extra-text {
      max-width: 500px;
      text-align: left;
      font-size: 0.8rem;
    }

    .form-section {
      background-color: #ebd10f; /*cambiar*/
      padding: 2rem;
      text-align: center;
      margin-top: 2rem;
    }

    .form-section h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    form input[type="text"],
    form input[type="email"] {
      padding: 0.8rem;
      width: 300px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 1rem;
      font-family: 'Open Sans', sans-serif;
      margin-bottom: 1rem;
    }


    form button {
      padding: 0.8rem 1.5rem;
      margin-left: 10px;
      background-color: #a56a32;
      color: white;
      border: none;
      border-radius: 5px;
      font-size: 1rem;
      cursor: pointer;
    }

    footer {
      background-color: rgba(224, 118, 52);
      text-align: center;
      padding: 1rem;
      display: flex;
      justify-content: center;
      gap: 2rem;
    }

    footer a {
      color: #333;
      text-decoration: none;
      font-size: 1.2rem;
    }

    footer a img {
      width: 24px;
      vertical-align: middle;
    }

    @media (max-width: 700px) {
  header {
    height: auto;
    padding: 3.5rem 1rem 2rem 1rem;
    flex-direction: column;
  }

  .extra-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .titulo-principal {
    font-size: 3rem;
  }

  .cabaña-label,
  .ubicacion-label {
    font-size: 1.2rem;
  }

  .pueblo-texto {
    font-size: 1.8rem;
  }

  .reservar-btn {
    top: 10px;
    right: 10px;
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }

  .gallery-slider {
    max-width: 90vw;
    aspect-ratio: 2/3;
  }

  .hero,
  .extra-section {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .extra-section .extra-text {
    font-size: 1.2rem;
  }
}

@media (min-width: 701px) {
  .extra-section,
   .extra-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 700px) {
  footer a {
    font-size: 0; /* Oculta el texto sin afectar el icono */
  }

  footer a img {
    width: 40px; /* Ajusta tamaño del icono en móvil */
    height: auto;
  }
}