/* ---------- RESET Y BASE ---------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

/* ---------- BANNER ---------- */
.banner img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

/* ---------- SECCIÓN DE INTRODUCCIÓN ---------- */
.grid-two {
  display: flex !important;
  justify-content: center !important;
  padding: 6rem 2rem !important;
  background-color: #f9f9f9 !important;
  text-align: center !important;
}

.grid-two .contenido {
  max-width: 900px !important;
}

.grid-two h2 {
  font-size: 2rem !important;
  color: #122e55 !important;
  font-weight: 700 !important;
  margin-bottom: 1.5rem !important;
  line-height: 1.4 !important;
}

.grid-two p {
  font-size: 1.1rem !important;
  color: #333 !important;
  line-height: 1.6 !important;
  margin-bottom: 1.2rem !important;
}

/* sección video */

.video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.video-wrapper iframe {
  width: 100%;
  max-width: 900px;
  height: 500px;
  border: none;
  border-radius: 10px;
  display: block;
}

/*sección agenda*/

.button-agenda {
  text-align: center;
  padding: 80px 20px;
  background-color: #f8f8f8;
}

.button-container {
  margin-top: 20px;
}

.download-btn {
  display: inline-block;
  background-color: #ff3c00;
  color: #fff;
  text-decoration: none;
  padding: 22px 60px;
  font-size: 22px;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 60, 0, 0.3);
}

.download-btn:hover {
  background-color: #e03500;
  transform: scale(1.07);
  box-shadow: 0 8px 25px rgba(255, 60, 0, 0.5);
}

/* ---------- SECCIÓN DE INSCRIPCIÓN ---------- */
.inscripcion {
  max-width: 100% !important;
  padding: 80px 16px !important;
  text-align: center !important;
  background-color: #122e55 !important;
  color: #ffffff !important;
}

.inscripcion .titulo-general {
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 40px !important;
  line-height: 1.5 !important;
}

/* Contenedor de formularios */
.inscripcion .formularios {
  display: flex !important;
  justify-content: center !important;
  align-items: flex-start !important;
  gap: 40px !important;
  flex-wrap: wrap !important;
}

/* Cada formulario */
.formulario {
  flex: 1 1 500px !important;
  max-width: 550px !important;
  background-color: rgba(255,255,255,0.1) !important;
  padding: 24px !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2) !important;
  text-align: left !important;
  color: #ffffff !important;
}

.formulario .subtitulo {
  font-size: 1.2rem !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin-bottom: 16px !important;
}

/* Iframe Forms */
.formulario iframe {
  width: 100% !important;
  height: 600px !important;
  border: none !important;
  border-radius: 8px !important;
  background-color: #ffffff !important;
}

/* ---------- FOOTER ---------- */
footer {
  padding: 2rem 0 !important;
  background-color: #f1f1f1 !important;
  text-align: center !important;
}

.footer-line {
  width: 100% !important;
  height: 50px !important;
  background: #ffad02;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .grid-two h2 {
    font-size: 1.6rem !important;
  }
  .grid-two p {
    font-size: 1rem !important;
  }
}

@media (max-width: 768px) {
  .inscripcion .formularios {
    flex-direction: column !important;
    gap: 24px !important;
  }
  .inscripcion .titulo-general {
    font-size: 1.2rem !important;
  }
  .grid-two {
    padding: 4rem 1.5rem !important;
  }
}

@media (max-width: 480px) {
  .grid-two h2 {
    font-size: 1.3rem !important;
  }
  .grid-two p {
    font-size: 0.95rem !important;
  }
  .formulario iframe {
    height: 500px !important;
  }
}