/* ===============================
   BASE CURSOS
================================ */

body {
  background: #f4f7fa;
}

/* ===============================
   HERO CURSO
================================ */

.curso-hero {
  background: linear-gradient(
    135deg,
    #004b8a,
    #0066b3
  );
  color: #ffffff;
  padding: 140px 20px 100px;
  text-align: center;
  box-shadow: 0 14px 35px rgba(0, 75, 138, 0.35);
}

.curso-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 12px;
}

.curso-subtitle {
  font-size: 18px;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto 30px;
}

.curso-highlights {
  list-style: none;
  padding: 0;
  margin: 0 auto 35px;
  max-width: 420px;
  text-align: left;
}

.curso-highlights li {
  font-size: 16px;
  margin-bottom: 10px;
}

/* ===============================
   BOTONES
================================ */

.btn-comprar {
  display: inline-block;
  background: #008833;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-comprar:hover {
  background: #006f26;
  transform: translateY(-2px);
}

.btn-grande {
  font-size: 18px;
  padding: 16px 36px;
}
/*//////*/
.botones-compra {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn-corporativa {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  background: #1e2a38;   /* Gris institucional */
  color: white;
  border: none;
  transition: all 0.3s ease;
  opacity: 0.85;
}

.btn-corporativa:hover {
  opacity: 1;
  transform: translateY(-2px);
}
/*//_____ Seccion compra corporativa landing ______//**/
.form-corporativo {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.input-group {
  position: relative;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 16px 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  background: #f9fafc;
  outline: none;
  transition: all 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #1e2a38;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(30,42,56,0.08);
}

.input-group label {
  position: absolute;
  left: 14px;
  top: 16px;
  font-size: 14px;
  color: #777;
  pointer-events: none;
  transition: 0.2s ease;
  background: transparent;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group textarea:focus + label,
.input-group textarea:not(:placeholder-shown) + label {
  top: -8px;
  left: 10px;
  font-size: 12px;
  background: white;
  padding: 0 6px;
  color: #1e2a38;
}
.titulo-cotizador {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 5px;
  color: #1e2a38;
}

.subtitulo-cotizador {
  text-align: center;
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 25px;
}

.cotizador-box .input-group {
  margin-bottom: 30px;
}

.cotizador-box .input-group input {
  height: 56px; /* altura uniforme elegante */
}

.cotizador-box .input-group label {
  top: 18px; /* centra mejor el label flotante */
}
.cotizador-box {
  display: flex;
  flex-direction: column;
  gap: 10px;   /* espacio entre bloques */
}


.resultado-cotizacion {
  text-align: center;
  margin-top: 20px;
}

.resultado-cotizacion h2 {
  font-size: 32px;
  margin: 10px 0;
  color: #1e2a38;
}

.detalle-descuento {
  font-size: 14px;
  color: #6b7280;
}



.btn-cotizacion-verde:hover {
  background: #18723d;
  transform: translateY(-2px);
}
#formCotizacion {
  display: flex;
  justify-content: center;
}

.btn-cotizacion-verde {
  margin-top: 25px;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  background: #1f8f4e;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cotizacion-verde:hover {
  background: #18723d;
  transform: translateY(-2px);
}

.mensaje-exito {
  margin-top: 20px;
  color: #1f8f4e;
  font-weight: 500;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.form-corporativo,
.cotizador-box {
  max-width: 600px;
  margin: 0 auto;
}



/* ===============================
   SECCIONES
================================ */

.curso-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 20px;
}

.curso-light {
  background: #ffffff;
}

.curso-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  margin-bottom: 25px;
  color: #004b8a;
}

.curso-section p {
  font-size: 16px;
  color: #2e3a47;
  max-width: 800px;
}

/* ===============================
   LISTAS
================================ */

.curso-section ul {
  list-style: disc;
  padding-left: 20px;
}

.curso-section li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #2e3a47;
}

.curso-contenidos {
  list-style: none;
  padding-left: 0;
}

.curso-contenidos li {
  padding-left: 28px;
  position: relative;
}

.curso-contenidos li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #008833;
  font-weight: bold;
}

/* ===============================
   PRECIO / CTA FINAL
================================ */

.curso-precio {
  background: linear-gradient(
    135deg,
    #004b8a,
    #008833
  );
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.curso-precio h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.precio {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 25px;
}

.nota-precio {
  font-size: 14px;
  opacity: 0.9;
  margin-top: 15px;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {

  .curso-hero {
    padding: 120px 15px 80px;
  }

  .curso-hero h1 {
    font-size: 32px;
  }

  .curso-subtitle {
    font-size: 16px;
  }

  .curso-section {
    padding: 50px 15px;
  }

  .curso-section h2 {
    font-size: 24px;
  }

  .precio {
    font-size: 34px;
  }
}

/*___________ Ajuste para Celu ___________*/

@media (max-width: 768px) {

  .nav-list,
  .nav-actions {
    display: none;
  }

  .nav-mail {
    display: flex;
    justify-content: center;
    width: 100%;
  }

}

