@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&display=swap");
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 0 !important;
  margin: 0;
}
body .main-index {
  overflow: hidden;
  flex: 1 0 auto;
  max-width: none;
  padding: 0;
}
body .main-index .banner {
  width: 100%;
  height: 60vh;
  /* podés ajustar el alto según tu diseño */
  background-image: url("../img/banner-1200-400.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
body .main-index .textos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 25vh;
}
body .main-index .textos p {
  text-align: center;
  font-size: 25px;
  font-family: "Cardo", serif;
  color: #2d2f4e;
}

@media (max-width: 991.98px) {
  body .main-index .banner {
    padding-top: 150px;
    background-image: url("../img/banner-mobile.png");
    /* opcional, por si querés hacerlo más bajo en móvil */
  }
  body .main-index .textos {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
  }
  body .main-index .textos p {
    width: 90%;
    text-align: justify;
    font-size: 15px;
    font-family: "Cardo", serif;
    color: #2d2f4e;
  }
}/*# sourceMappingURL=styles-v1.1.css.map */