/* Header base ya existente */
.header {
  position: relative;
  z-index: 1;
}

/* -------------------- Media Queries -------------------- */



/* Tablets más pequeñas y móviles grandes (≤768px) */
@media screen and (max-width: 768px) {
  .header {
    height: 80vh; /* menos altura para tablet */
    background-attachment: scroll; /* evita efecto fijo que puede cortar imagen */
  }

  .header-content h1 {
    font-size: 2rem;
  }

  .header-content p {
    font-size: 1rem;
    padding: 0 15px;
  }

  .header-content .buttoms {
    gap: 15px;
  }

  .header-content .buttoms button {
    width: 80%;
    max-width: 250px;
    font-size: 0.95rem;
  }
}

/* Móviles pequeños (≤480px) */
@media screen and (max-width: 480px) {
  .header {
    height: 70vh;
  }

  .header-content{
    width: 300px;
  }

  .header-content h1 {
    font-size: 1.6rem;
  }

  .header-content p {
    font-size: 0.95rem;
  }

  .header-content .buttoms button {
    width: 90%;
    font-size: 0.9rem;
  }
}

/* Móviles pequeños (≤480px) */
@media screen and (max-width: 340px) {

  .header-content{
    width: 300px;
  }

  .header-content h1 {
    font-size: 1.5rem;
  }

  .header-content p {
    font-size: 0.85rem;
  }



  .header-content .buttoms button {
    width: 45%;
    font-size: 0.9rem;
  }
}
