html {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  background-color: #4d7a7a;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-blend-mode: multiply;
  background-attachment: fixed;

  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: .9rem;
}

@media screen and (max-width: 767px) {
  body {
    background-image: url('img/bgMobile.webp');
  }
}

@media screen and (min-width: 768px) {
  body {
    background-image: url('img/bgWeb.webp');
    font-size: 1rem;
  }
}

.full-height {
  height: 97vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .full-height {
    height: auto;
    min-height: 100vh;
    padding: 2rem 1rem;
    justify-content: flex-start; /* Opcional, si querés alinear arriba */
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo {
  height: 140px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 1rem;
  animation: fadeIn 0.8s ease-out forwards;
}

.description {
  max-width: 36rem;
  margin: 0 auto 2rem;
  line-height: 1.45rem;
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
  animation-delay: 0.4s;
  text-wrap: balance;
}

@media screen and (max-width: 767px) {
  .description {
    line-height: 1.8rem;
    margin: 0 auto 3rem;
  }
}

.info {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 40rem;
  margin: 0 auto;
  grid-gap: .5rem 0;
}
  
.info-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

.info-item:nth-child(1) { animation-delay: 1.2s; }
.info-item:nth-child(2) { animation-delay: 1.6s; }
.info-item:nth-child(3) { animation-delay: 2s; }
.info-item:nth-child(4) { animation-delay: 2.4s; }

.info-icon {
  width: 1.75rem;
}
.info-text {
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 0.95rem;
}

@media screen and (min-width: 768px) {
  .info {
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem 0;
  }
  .info-icon {
    width: 2rem;
  }
  .info-text {
    font-size: 1.15rem;
  }
  .logo {
    margin-bottom: 3rem;
  }
}