/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BODY ===== */
body {
  font-family: Arial, sans-serif;
  background-color: #f4f6f8;
  color: #1f2937;
}

/* ===== HEADER ===== */
.header {
  background-color: #ffffff;
  padding: 15px 0;
  border-bottom: 2px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  height: 55px;
}

/* ===== NAVEGACIÓN ===== */

.nav {
  display: flex;
  align-items: center;
}

.nav a {
  color: #195D38;
  text-decoration: none;
  margin-left: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s, border-bottom 0.3s;
  padding-bottom: 4px;
}

.nav a:hover {
  color: #37AAE1;
  border-bottom: 2px solid #37AAE1;
}


/* Botón contacto */
.btn-nav {
  background-color: #F7C200;
  color: #195D38 !important;
  padding: 8px 16px;
  border-radius: 5px;
}

/* ===== HERO ===== */
.hero {
  background-color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 40px;
  color: #195D38;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn-hero {
  background-color: #195D38;
  color: white;
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.btn-hero:hover {
  background-color: #0b5a2c;
}

/* ===== CURSOS ===== */
.cursos {
  padding: 80px 20px;
  background-color: #f4f6f8;
  text-align: center;
}

.cursos h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #195D38;
}

.cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background-color: white;
  padding: 30px;
  width: 280px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.card h3 {
  color: #37AAE1;
  margin-bottom: 15px;
}

/* ===== FOOTER ===== */
.footer {
  background-color: #195D38;
  color: white;
  text-align: center;
  padding: 25px 20px;
}

/* ===== TEMARIO ===== */

.temario {
  padding: 80px 20px;
  background-color: #ffffff;
  text-align: center;
}

.temario h2 {
  font-size: 32px;
  color: #195D38;
  margin-bottom: 15px;
}

.temario-desc {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 16px;
  color: #4b5563;
}

.temario-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.temario-card {
  background-color: #f4f6f8;
  padding: 30px;
  width: 320px;
  border-radius: 8px;
  text-align: left;
}

.temario-card h3 {
  color: #37AAE1;
  margin-bottom: 20px;
  font-size: 20px;
}

.temario-card ul {
  list-style: none;
  padding: 0;
}

.temario-card li {
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
  font-size: 15px;
}

.temario-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #195D38;
}
/* ===== PRECIOS ===== */

.precios {
  padding: 80px 20px;
  background-color: #f4f6f8;
  text-align: center;
}

.precios h2 {
  font-size: 32px;
  color: #195D38;
  margin-bottom: 15px;
}

.precios-desc {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 16px;
  color: #4b5563;
}

.precios-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.precio-card {
  background-color: #ffffff;
  padding: 35px 30px;
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: left;
}

.precio-card h3 {
  color: #37AAE1;
  margin-bottom: 10px;
  font-size: 20px;
}

.precio {
  font-size: 28px;
  font-weight: bold;
  color: #195D38;
  margin-bottom: 20px;
}

.precio-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.precio-card li {
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
  font-size: 15px;
}

.precio-card li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #195D38;
}

.btn-precio {
  display: inline-block;
  background-color: #195D38;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
}

/* Destacado */
.precio-card.destacado {
  border: 2px solid #F7C200;
}

.precio-card.destacado .btn-precio {
  background-color: #F7C200;
  color: #195D38;
}

/* ===== BENEFICIOS ===== */

.beneficios {
  padding: 80px 20px;
  background-color: #ffffff;
  text-align: center;
}

.beneficios h2 {
  font-size: 32px;
  color: #195D38;
  margin-bottom: 50px;
}

.beneficios-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.beneficio {
  background-color: #f4f6f8;
  padding: 30px;
  width: 260px;
  border-radius: 8px;
}

.beneficio h3 {
  color: #37AAE1;
  margin-bottom: 15px;
  font-size: 18px;
}

/* ===== BENEFICIOS ===== */

.beneficios {
  padding: 80px 20px;
  background-color: #ffffff;
  text-align: center;
}

.beneficios h2 {
  font-size: 32px;
  color: #195D38;
  margin-bottom: 50px;
}

.beneficios-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.beneficio {
  background-color: #f4f6f8;
  padding: 30px;
  width: 260px;
  border-radius: 8px;
}

.beneficio h3 {
  color: #37AAE1;
  margin-bottom: 15px;
  font-size: 18px;
}

/* ===== CONTACTO ===== */

.contacto {
  padding: 80px 20px;
  background-color: #195D38;
  color: white;
  text-align: center;
}

.contacto h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.contacto-desc {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 16px;
}

.contacto-info p {
  margin-bottom: 10px;
  font-size: 16px;
}

.btn-contacto {
  display: inline-block;
  margin-top: 30px;
  background-color: #25D366; /* verde WhatsApp */
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.btn-contacto:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
  opacity: 0.9;
}


/* ===== LINK ACTIVO ===== */

.nav a.activo {
  color: #37AAE1;
  border-bottom: 2px solid #37AAE1;
}

/* ===== FOOTER INSTITUCIONAL ===== */

.footer {
  background-color: #1f2937;
  color: #e5e7eb;
  padding: 50px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 40px 20px;
  flex-wrap: wrap;
  gap: 40px;
  text-align: center;
}

.footer-brand {
  max-width: 350px;
}

.footer-brand img {
  height: 45px;
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-links h4,
.footer-contacto h4 {
  margin-bottom: 15px;
  color: #F7C200;
  font-size: 16px;
}

.footer-links a {
  display: block;
  color: #e5e7eb;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-links a:hover {
  color: #37AAE1;
}

.footer-contacto p {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid #374151;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #9ca3af;
}

/* ===== BOTÓN FACEBOOK ===== */

.btn-facebook {
  display: inline-block;
  margin-top: 15px;
  margin-left: 10px;
  background-color: #1877F2;
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.btn-facebook:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
  opacity: 0.9;
}

/* ===== FORMULARIO ===== */

.formulario {
  padding: 80px 20px;
  background-color: #f4f6f8;
  text-align: center;
}

.formulario h2 {
  font-size: 32px;
  color: #195D38;
  margin-bottom: 40px;
}

.form-contacto {
  max-width: 600px;
  margin: 0 auto 50px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-contacto input,
.form-contacto textarea {
  padding: 14px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  font-size: 15px;
  font-family: Arial, sans-serif;
}

.form-contacto input:focus,
.form-contacto textarea:focus {
  outline: none;
  border-color: #37AAE1;
}

.form-contacto button {
  background-color: #195D38;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.form-contacto button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
  opacity: 0.9;
}

.contacto-extra p {
  margin-bottom: 8px;
}

/* ===== NOSOTROS ===== */

.nosotros {
  padding: 90px 20px;
  background-color: #f4f6f8;
}

.nosotros-container {
  max-width: 1100px;
  margin: auto;
}

.nosotros-texto {
  max-width: 850px;
}

.nosotros h2 {
  font-size: 32px;
  color: #195D38;
  margin-bottom: 25px;
}

.nosotros p {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 18px;
}

/* ============================= */
/* ====== RESPONSIVE MÓVIL ===== */
/* ============================= */

@media (max-width: 768px) {

  /* HEADER */
  .header-container {
    flex-direction: column;
    gap: 15px;
  }

  .nav a {
    margin-left: 15px;
    margin-right: 15px;
    font-size: 15px;
  }

  /* HERO */
  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  /* SECCIONES */
  .cursos h2,
  .temario h2,
  .precios h2,
  .beneficios h2,
  .nosotros h2 {
    font-size: 26px;
  }

  /* CARDS */
  .cards,
  .temario-grid,
  .precios-grid,
  .beneficios-grid {
    flex-direction: column;
    align-items: center;
  }

  .card,
  .temario-card,
  .precio-card,
  .beneficio {
    width: 90%;
    max-width: 420px;
  }

  /* NOSOTROS */
  .nosotros-texto {
    max-width: 100%;
  }

  /* FORMULARIO */
  .form-contacto {
    width: 100%;
    padding: 0 10px;
  }

  .form-contacto input,
  .form-contacto textarea {
    font-size: 15px;
  }

  /* FOOTER */
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

}


/* ===== METODOLOGÍA ===== */

.metodologia {
  padding: 80px 20px;
  background-color: #f4f6f8;
  text-align: center;
}

.metodologia h2 {
  font-size: 32px;
  color: #195D38;
  margin-bottom: 15px;
}

.metodologia-desc {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 16px;
  color: #4b5563;
}

.metodologia-grid {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.metodo-card {
  background-color: #ffffff;
  width: 230px;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: center;
  position: relative;
}

.metodo-card span {
  display: inline-block;
  background-color: #F7C200;
  color: #195D38;
  font-weight: bold;
  padding: 8px 14px;
  border-radius: 50%;
  margin-bottom: 15px;
  font-size: 14px;
}

.metodo-card h3 {
  color: #37AAE1;
  margin-bottom: 10px;
  font-size: 17px;
}

.metodo-card p {
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
}

/* ===== MISIÓN · VISIÓN · VALORES ===== */

.mvv {
  padding: 80px 20px;
  background-color: #ffffff;
}

.mvv-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.mvv-card {
  background-color: #f4f6f8;
  padding: 35px 30px;
  width: 300px;
  border-radius: 10px;
  text-align: center;
}

.mvv-card h3 {
  color: #195D38;
  font-size: 22px;
  margin-bottom: 15px;
}

.mvv-card p {
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
}

.mvv-card ul {
  list-style: none;
  padding: 0;
}

.mvv-card li {
  font-size: 15px;
  color: #374151;
  margin-bottom: 10px;
}

/* ===== PREGUNTAS FRECUENTES ===== */

.faq {
  padding: 80px 20px;
  background-color: #ffffff;
  text-align: center;
}

.faq h2 {
  font-size: 32px;
  color: #195D38;
  margin-bottom: 50px;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background-color: #f4f6f8;
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  text-align: left;
}

.faq-item h3 {
  font-size: 18px;
  color: #37AAE1;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
}

/* ===== ANIMACIONES SUAVES ===== */

.card,
.temario-card,
.precio-card,
.metodo-card,
.faq-item,
.beneficio {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover,
.temario-card:hover,
.precio-card:hover,
.metodo-card:hover,
.faq-item:hover,
.beneficio:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* ===== ANIMACIÓN HERO ===== */

.hero-content {
  animation: fadeUp 0.8s ease-out;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== JERARQUÍA DE TÍTULOS ===== */

section h2 {
  letter-spacing: 0.5px;
}

/* ===== BOTONES ANIMADOS ===== */

.btn-hero,
.btn-precio,
.btn-contacto,
button {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-hero:hover,
.btn-precio:hover,
.btn-contacto:hover,
button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* ===== HERO FINAL LIMPIO ===== */

.hero {
  background-color: #ffffff;
  padding: 90px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  color: #195D38;
  margin-bottom: 25px;
  line-height: 1.25;
}

.hero p {
  max-width: 750px;
  margin: 0 auto 45px; /* ← aquí se separa bien el botón */
  font-size: 18px;
  color: #1f2937;
}

.btn-hero {
  display: inline-block;
  background-color: #195D38;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

/* ===== COLORES DE PLANES ===== */

/* Plan Básico - Azul */
.precio-card.basico {
  border: 2px solid #37AAE1;
}

/* Plan Intermedio - Amarillo (ya existente) */
.precio-card.destacado {
  border: 2px solid #F7C200;
}

/* Plan Avanzado - Rojo */
.precio-card.avanzado {
  border: 2px solid #E53935;
}

/* ===== TEMARIO · COLORES ===== */

/* Base (por si acaso) */
.temario-card {
  border-left: 6px solid transparent;
}

/* Azul */
.temario-card:nth-child(1) {
  border-left-color: #37AAE1;
  background-color: #eef7fd;
}

/* Amarillo */
.temario-card:nth-child(2) {
  border-left-color: #F7C200;
  background-color: #fff8e1;
}

/* Verde */
.temario-card:nth-child(3) {
  border-left-color: #195D38;
  background-color: #eef5f1;
}

/* Rojo claro (si agregas un cuarto en el futuro) */
.temario-card:nth-child(4) {
  border-left-color: #E57373;
  background-color: #fdecec;
}
.beneficio {
  position: relative;
  overflow: hidden;
}

.beneficio::before {
  content: "✓";
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 60px;
  color: rgba(25, 93, 56, 0.08);
  font-weight: bold;
}

/* ===== MENÚ DESPLEGABLE ===== */

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 220px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  border-radius: 6px;
  display: none;
  flex-direction: column;
  z-index: 1500;
}

.dropdown-menu a {
  padding: 12px 18px;
  text-decoration: none;
  color: #195D38;
  font-size: 14px;
  font-weight: 500;
}

.dropdown-menu a:hover {
  background-color: #f4f6f8;
  color: #37AAE1;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

/* ============================= */
/* ===== MOBILE FINAL (LIMPIO) ===== */
/* ============================= */

@media (max-width: 768px) {

  /* ===== ESCALA GLOBAL ===== */
  body {
    font-size: 21px;
    line-height: 1.7;
  }

  /* ===== HEADER / MENÚ ===== */
  .header-container {
    padding: 18px 12px;
  }

  .logo img {
    height: 72px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .nav a {
    font-size: 18px;
    margin: 0 10px;
  }

  /* ===== HERO ===== */
  .hero {
    padding: 90px 20px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 30px;
  }

  .hero p {
    font-size: 21px;
    margin-bottom: 55px;
  }

  .btn-hero {
    font-size: 20px;
    padding: 20px 40px;
    border-radius: 12px;
  }

  /* ===== TÍTULOS ===== */
  section h2 {
    font-size: 32px;
    margin-bottom: 45px;
  }

  /* ===== CARDS ===== */
  .card,
  .beneficio,
  .temario-card,
  .precio-card,
  .metodo-card,
  .faq-item {
    width: 100%;
    padding: 38px;
    border-radius: 16px;
  }

  .card h3,
  .beneficio h3,
  .temario-card h3,
  .precio-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .card p,
  .beneficio p,
  .temario-card li,
  .precio-card li {
    font-size: 18px;
    line-height: 1.7;
  }

  /* ===== METODOLOGÍA ===== */
  .metodo-card span {
    font-size: 20px;
    padding: 14px 20px;
  }

  .metodo-card p {
    font-size: 18px;
  }

  /* ===== FORMULARIO ===== */
  .formulario h2 {
    font-size: 32px;
  }

  .form-contacto input,
  .form-contacto textarea {
    font-size: 19px;
    padding: 20px;
    border-radius: 12px;
  }

  .form-contacto button {
    font-size: 20px;
    padding: 20px;
    border-radius: 12px;
  }

  /* ===== CONTACTO ===== */
  .contacto {
    padding: 70px 20px;
    text-align: center;
  }

  .contacto-desc {
    font-size: 19px;
  }

  .contacto-info p {
    font-size: 18px;
  }

  .btn-contacto,
  .btn-facebook {
    width: 100%;
    max-width: 340px;
    font-size: 19px;
    padding: 20px;
    border-radius: 12px;
    margin: 14px auto 0;
    display: block;
  }

  /* ===== FOOTER ===== */
  .footer {
    padding: 45px 20px 25px;
  }

  .footer-brand img {
    height: 60px;
    margin-bottom: 15px;
  }

  .footer-brand p,
  .footer-contacto p {
    font-size: 16px;
  }

  .footer-bottom {
    font-size: 13px;
    margin-top: 20px;
  }
}

/* ===== COLABORACIÓN ===== */
.colaboracion {
  max-width: 900px;
  margin: 40px auto 20px;
  padding: 20px 25px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background-color: #ffffff;
  text-align: center;
}

.colaboracion-titulo {
  font-size: 18px;
  font-weight: 600;
  color: #195D38;
  margin-bottom: 8px;
}

.colaboracion-texto {
  font-size: 15px;
  color: #374151;
  margin-bottom: 15px;
}

.colaboracion-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  color: #6b7280;
}

.colaboracion-logos img {
  height: 38px;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.colaboracion-logos img:hover {
  opacity: 1;
}
/* ===== BOTÓN ALIANZA ===== */
.btn-alianza {
  margin-top: 15px;
  padding: 10px 18px;
  background-color: #195D38;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-alianza:hover {
  background-color: #14502f;
  transform: translateY(-1px);
}

/* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.modal-contenido {
  background-color: #ffffff;
  max-width: 520px;
  width: 90%;
  padding: 30px 28px;
  border-radius: 10px;
  position: relative;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== CERRAR ===== */
.modal-cerrar {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #6b7280;
}

.modal-cerrar:hover {
  color: #111827;
}

/* ===== CONTENIDO MODAL ===== */
.modal-contenido h3 {
  font-size: 20px;
  color: #195D38;
  margin-bottom: 12px;
}

.modal-contenido p {
  font-size: 15px;
  color: #374151;
  margin-bottom: 18px;
}

/* ===== ESCUELA ===== */
.modal-escuela {
  text-align: center;
}

.modal-escuela img {
  height: 60px;
  margin-bottom: 10px;
}

.modal-escuela ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.modal-escuela ul li {
  font-size: 14px;
  color: #374151;
  margin-bottom: 6px;
}

/* ===== BOTÓN MODAL ===== */
.modal-escuela a {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 16px;
  background-color: #195D38;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.modal-escuela a:hover {
  background-color: #14502f;
}
