.section-info {
  padding: 2rem;
  display: flex;
  justify-content: center;
}

.info-container {
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 20px;
  gap: 30px;
}

.info-video iframe {
  width: 100%;
  max-width: 465px;
  height: 181px;
  aspect-ratio: 16 / 7;
  border-radius: 6px;
}

.info-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-video {
  display: flex;
  justify-content: flex-start;
}

.title {
  text-align: center;
  max-width: 1100px;
  width: 90%;
  margin: 5rem auto;
  margin-bottom: 0;
}

.title h1 {
  font-weight: 100;
  font-size: 32px;
}

.title p {
  font-size: 18px;
  line-height: normal;
}

.modal-linea__texto {
  font-size: 14px !important;
}

.modal-linea__content {
  padding: 2rem 1rem 1.5rem !important;
}

.modal-linea__titulo {
  font-size: 22px;
}

.modal-linea {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-linea.hidden {
  display: none;
}

.modal-linea__content {
  background-color: white;
  border-radius: 16px;
  padding: 2rem 2rem 1.5rem;
  max-width: 520px;
  width: 90%;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.modal-linea__titulo {
  font-size: 24px;
  font-weight: 100;
  color: #0B2739;
  margin-bottom: 0.8rem;
}

.modal-linea__texto {
  font-size: 17px;
  color: #0B2739;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.modal-linea__texto b {
  color: #019DF4;
}

.modal-linea__texto span {
  color: #8E8E8E;
}

.modal-linea__btn {
  background-color: #019DF4;
  color: white;
  border: none;
  border-radius: 100px;
  padding: 0.4rem 2.5rem;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.modal-linea__btn:hover {
  background-color: #0281c5;
}

@media (min-width: 768px) {
  .info-container {
    flex-direction: row;
  }

  .info-video iframe {
    height: 265px;
  }

  .title {
    width: 65%;
  }

  .title h1 {
    font-size: 36px;
  }

  .title p {
    font-size: 24px;
  }

  .modal-linea__texto {
    font-size: 17px !important;
  }

  .modal-linea__content {
    padding: 2rem 2rem 1.5rem !important;
  }

  .modal-linea__titulo {
    font-size: 24px;
  }
}