/* Footer: alinear a la derecha el bloque Información */
.footer__area-widget {
  text-align: right;
}

.footer__area-widget-contact-info {
  display: inline-block; /* mantiene el ancho ajustado al contenido */
  text-align: right;     /* asegura que los textos internos también se alineen */
}

/* Asegura que los iconos y textos en flex no se queden alineados a la izquierda */
.footer__area-widget-contact-info-item {
  justify-content: flex-end; /* icono + texto se van a la derecha */
}
.footer__area-widget-contact-info-item-icon {
  order: 2; /* opcional: pone el icono después del texto */
  margin-left: 10px;
  margin-right: 0;
}
.footer__area-widget-contact-info-title {
  order: 1;
}

.page__banner-content{
  /* espacio para que el texto respire en todas las pantallas */
  padding: 6rem 1rem;
}

.page__banner-content h1{
  /* fluido con límites: min 28px, crece con el viewport, máx 64px */
  font-size: clamp(1.75rem, 8vw, 4rem);
  line-height: 1.05;
  margin: 0 0 .5rem 0;
        /* evita líneas larguísimas */
  text-wrap: balance;       /* mejora el salto de línea si el navegador lo soporta */
  word-break: normal;       /* evita cortes feos */
}

.page__banner-content ul{
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: clamp(1rem, 2.6vw, 1.25rem);
  opacity: .9;
}

/* Ajustes extra en móviles si lo necesitas */
@media (max-width: 768px){
  .page__banner-content{ padding: 4rem 1rem; }
}

@media (max-width: 768px){
.footer__area-widget {
  text-align: center;
}

.footer__area-widget-about {
  text-align: center;
}
}

.title-white {
  color: white;
}


.contact__form-form-group select {
  width: 100%;
  height: 60px;
  border: 1px solid #E6E7E8;
  padding-left: 55px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.contact__form-form-group select:focus {
  border-color: #00b2a9;
}

.enlace-privacidad {
  color: #00b2a9; /* tu color corporativo */
  text-decoration: underline;
  font-weight: 600; /* opcional, para resaltarlo más */
}

.enlace-privacidad a:hover {
  color: #007f8d; /* tono más oscuro al pasar el mouse */
  text-decoration: underline;
}



#mobilemenu .menu-cta .btn-aula{
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .6rem 1rem; border-radius: 999px;
  background: linear-gradient(135deg, #2574ab 0%, #1c5881 100%);
  color: #fff !important; font-weight: 600;
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 4px 12px rgba(28,88,129,.35);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
#mobilemenu .menu-cta .btn-aula:hover{
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(28,88,129,.45);
}
#mobilemenu .menu-cta .btn-aula:active{
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(28,88,129,.4);
}
#mobilemenu .menu-cta .btn-aula i{ font-size: .95em; }

.mean-container .mean-nav ul li a {
  text-transform: uppercase !important;
}