/* ===========================
   BORDE DEL MENU DE IDIOMA
=========================== */

/* Dropdown menu */
#lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 160px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  z-index: 1000;

  opacity: 0;
  transform: scale(0.95) translateY(-4px);
  pointer-events: none;
  transition: all 0.25s ease;
}

/* Visible state */
#lang-menu.show {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}


/* Contenedor Principal de Accesibilidad */
.elementor-23 {
    max-width: 850px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #2d3748;
    line-height: 1.8;
}

/* Tarjeta de Contenido */
.elementor-23 .elementor-widget-container {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Título Principal */
.elementor-23 .page-header {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 2rem;
    border-left: 8px solid #feb01a;
    padding-left: 25px;
    line-height: 1;
}

/* Subtítulos (Los que no tienen etiqueta H) */
.elementor-23 p:has(+ ul), 
.elementor-23 p:nth-of-type(1),
.elementor-23 p:nth-last-of-type(3) {
    font-weight: 700;
    font-size: 1.25rem;
    color: #1a202c;
    margin-top: 30px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Estilo de Listas */
.elementor-23 .wp-block-list {
    margin-bottom: 2rem;
    list-style: none;
    padding-left: 0;
}

.elementor-23 .wp-block-list li {
    background: #f8fafc; /* Fondo sutil para cada ítem */
    margin-bottom: 12px;
    padding: 15px 20px;
    border-radius: 12px;
    border-left: 4px solid #feb01a;
    transition: transform 0.2s ease;
}

.elementor-23 .wp-block-list li:hover {
    transform: translateX(5px);
    background: #f1f5f9;
}

/* Enlaces */
.elementor-23 a {
    color: #2d3748;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: #feb01a;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    transition: all 0.2s ease;
}

.elementor-23 a:hover {
    background-color: #feb01a;
    color: #000;
    text-decoration-color: transparent;
}

/* Sección de Contacto Final */
.elementor-23 p:last-of-type {
    background: #1a202c;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
    font-weight: 600;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .elementor-23 .elementor-widget-container {
        padding: 30px 20px;
    }
    .elementor-23 .page-header {
        font-size: 2rem;
    }
}