/* ===================================================
   asesorias.css
   Estilos específicos para la página de asesorías
   =================================================== */


/* ======================================
   1. CONTENEDOR PRINCIPAL
   ====================================== */

main.asesoria {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
    font-family: "Poppins", "Sans-serif";
}

.frase-identidad {
  margin-top: 1.5rem;
  font-style: italic;
  color: #444;
  font-size: 1.05rem;
  text-align: center;
}


/* ======================================
   2. SECCIONES GENERALES
   ====================================== */

section {
  margin-bottom: 2.5rem;
  background-color: #f5f7fa;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    
}

section.aviso-academico {
  background-color: #fff3cd;
  border-left: 5px solid #ffc107;
}

section.aviso-academico a {
  color: #d39e00;
  text-decoration: underline;
}


/* ======================================
   3. TÍTULOS Y LISTAS
   ====================================== */

h2 {
  font-size: 1.8rem;
  color: #1c1c1c;
  margin-bottom: 0.8rem;
  padding-left: 0.6rem;
    
}

li em {
  display: block;
  font-size: 0.95rem;
  color: #555;
  margin-top: 0.3rem;

}


/* ======================================
   4. LISTA DE SERVICIOS / ACORDEÓN
   ====================================== */

.lista-servicios {
  list-style: none;
  padding: 0;
}

.item-servicio {
  margin-bottom: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.item-servicio-2 {
  margin-bottom: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.btn-servicio {
  width: 100%;
  text-align: left;
  border: none;
  padding: 1rem;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contenido-servicio {
  display: none;
  padding: 1rem;
  background-color: #ffffff;
}

.contenido-servicio.visible {
  display: block;
}



.valor {
  background-color: #e8f0fe;
  border-left: 5px solid #5c6bc0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.valor:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}


/* ======================================
   6. ACORDEÓN ALTERNATIVO
   ====================================== */

.acordeon-item {
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.acordeon-titulo {
  width: 100%;
  text-align: left;
  padding: 1rem;
  border: none;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.acordeon-contenido {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  background-color: #ffffff;
  transition: max-height 0.4s ease;
}

.acordeon-contenido ul {
  padding: 1rem 0;
  margin: 0;
  list-style-type: disc;
  margin-left: 1.2rem;
}

.acordeon-item.activo .acordeon-contenido {
  max-height: 300px;
}


/* ======================================
   7. TESTIMONIOS
   ====================================== */

.testimonios {
  background-color: #f9f9f9;
  border-left: 4px solid #5c6bc0;
  padding: 2rem;
  margin-top: 3rem;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonios:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonio {
  margin-bottom: 1.5rem;
}

blockquote {
  font-style: italic;
  margin: 0 0 0.5rem 0;
  padding-left: 1rem;
  border-left: 3px solid #ccc;
}

.autor-testimonio {
  font-weight: bold;
  color: #555;
}


/* ======================================
   8. TARIFAS Y CONDICIONES
   ====================================== */

.tarifa-condiciones {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tarifa-condiciones:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}


/* ======================================
   9. FORMULARIO DE CONTACTO
   ====================================== */

.formulario-contacto {
  background-color: #f5f7fa;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  max-width: 600px;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.formulario-contacto:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.formulario-contacto h2 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  color: #333;
}

.formulario-contacto form {
  display: flex;
  flex-direction: column;
}

.formulario-contacto label {
  margin-top: 1rem;
  margin-bottom: 0.4rem;
  font-weight: bold;
  color: #444;
}

.formulario-contacto input,
.formulario-contacto textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #fff;
  transition: border-color 0.3s ease;
}

.formulario-contacto input:focus,
.formulario-contacto textarea:focus {
  outline: none;
  border-color: #5c6bc0;
}

.formulario-contacto .boton-principal {
  margin-top: 1.5rem;
  align-self: flex-start;
}


/* ======================================
   10. EFECTOS COMPARTIDOS
   ====================================== */

.servicios {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servicios:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}