/* Start custom CSS for html, class: .elementor-element-b03611b *//* ==========================================================================
   HERO SECTION - SOBRE MÍ (GLASSMORPHISM)
   ========================================================================== */

.about-hero-section {
  padding: 60px 20px;
  background-color: #F8FAFC;
  font-family: 'Inter', sans-serif;
  display: flex;
  justify-content: center;
}

.glass-card-about-hero {
  max-width: 1000px;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 20px;
  padding: 56px 48px;
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.05);
}

.about-hero-content {
  text-align: left;
}

/* Badge */
.about-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #2563EB;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Título */
.about-title {
  color: #0F172A;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.about-title .text-accent {
  color: #2563EB;
}

/* Párrafos Biográficos */
.about-bio {
  color: #334155;
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.about-bio-secondary {
  color: #64748B;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Bloque de Estadísticas / Métricas Clave */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid #E2E8F0;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.875rem;
  color: #64748B;
  font-weight: 500;
}

/* Responsivo */
@media (max-width: 768px) {
  .glass-card-about-hero {
    padding: 32px 24px;
  }

  .about-title {
    font-size: 1.85rem;
  }

  .about-stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1643ffd *//* ==========================================================================
   SECCIÓN DE PILARES Y ENFOQUE DE TRABAJO (GLASSMORPHISM)
   ========================================================================== */

.about-pillars-section {
  padding: 80px 20px;
  background-color: #F8FAFC;
  font-family: 'Inter', sans-serif;
}

.pillars-container {
  max-width: 1100px;
  margin: 0 auto;
}

.pillars-header {
  text-align: center;
  margin-bottom: 56px;
}

.pillars-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #2563EB;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pillars-title {
  color: #0F172A;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.pillars-subtitle {
  color: #64748B;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Grid de 3 Columnas */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Tarjeta Glassmorphism para cada Pilar */
.glass-card-pillar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.04);
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.glass-card-pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 16px 35px -5px rgba(15, 23, 42, 0.08);
}

/* Ícono del Pilar */
.pillar-icon {
  width: 52px;
  height: 52px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* Título y Descripción */
.pillar-name {
  color: #0F172A;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.pillar-description {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Adaptación Mobile */
@media (max-width: 992px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .about-pillars-section {
    padding: 50px 16px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-bb09a82 *//* ==========================================================================
   SECCIÓN DE TRAYECTORIA Y TIMELINE (GLASSMORPHISM)
   ========================================================================== */

.about-experience-section {
  padding: 80px 20px;
  background-color: #F8FAFC;
  font-family: 'Inter', sans-serif;
}

.experience-container {
  max-width: 900px;
  margin: 0 auto;
}

.experience-header {
  text-align: center;
  margin-bottom: 56px;
}

.experience-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #2563EB;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.experience-title {
  color: #0F172A;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.experience-subtitle {
  color: #64748B;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Timeline Wrapper */
.timeline-wrapper {
  position: relative;
  padding-left: 32px;
  border-left: 2px solid #E2E8F0;
  margin-left: 10px;
}

/* Elemento Individual del Timeline */
.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

/* Punto Conector */
.timeline-dot {
  position: absolute;
  left: -41px;
  top: 24px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #2563EB;
  border: 4px solid #F8FAFC;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.3);
}

/* Tarjeta Glassmorphism */
.glass-card-timeline {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.glass-card-timeline:hover {
  transform: translateX(4px);
  border-color: rgba(37, 99, 235, 0.3);
}

/* Metadata (Fecha y Ubicación) */
.timeline-meta {
  display: flex;
  gap: 12px;
  font-size: 0.825rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.timeline-date {
  color: #2563EB;
  background: rgba(37, 99, 235, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
}

.timeline-location {
  color: #64748B;
  display: flex;
  align-items: center;
}

/* Titulares de Cargo y Empresa */
.timeline-role {
  color: #0F172A;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 8px 0 2px 0;
}

.timeline-company {
  color: #475569;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.timeline-desc {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Lista de Viñetas */
.timeline-bullets {
  margin: 0;
  padding-left: 20px;
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.5;
}

.timeline-bullets li {
  margin-bottom: 6px;
}

/* Adaptación Móvil */
@media (max-width: 768px) {
  .timeline-wrapper {
    padding-left: 20px;
    margin-left: 0;
  }

  .timeline-dot {
    left: -29px;
  }

  .glass-card-timeline {
    padding: 24px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-68d140a *//* ==========================================================================
   SECCIÓN CREDENCIALES, HERRAMIENTAS Y AFILIACIONES
   ========================================================================== */

.about-credentials-section {
  padding: 80px 20px 100px 20px;
  background-color: #F8FAFC;
  font-family: 'Inter', sans-serif;
}

.credentials-container {
  max-width: 1100px;
  margin: 0 auto;
}

.credentials-header {
  text-align: center;
  margin-bottom: 56px;
}

.credentials-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #2563EB;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.credentials-title {
  color: #0F172A;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.credentials-subtitle {
  color: #64748B;
  font-size: 1rem;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Grid de 3 Columnas */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.glass-card-cred {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
}

.cred-icon-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E2E8F0;
}

.cred-card-title {
  color: #0F172A;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
}

/* Listas Internas */
.cred-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cred-list li {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.cred-list li:last-child {
  margin-bottom: 0;
}

.cred-list strong {
  color: #0F172A;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.cred-list span {
  color: #64748B;
  font-size: 0.85rem;
}

/* Etiquetas / Pills */
.skills-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.margin-top-skills {
  margin-top: 20px;
}

.skills-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0F172A;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  background: #F1F5F9;
  color: #334155;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 8px;
  border: 1px solid #E2E8F0;
}

.pill-lang {
  background: rgba(37, 99, 235, 0.06);
  color: #2563EB;
  border-color: rgba(37, 99, 235, 0.2);
}

/* Cuadro de Investigación */
.research-box {
  background: rgba(37, 99, 235, 0.04);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}

.research-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  color: #2563EB;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.research-text {
  color: #334155;
  font-size: 0.875rem;
  line-height: 1.45;
  margin: 0;
}

/* Adaptación Mobile */
@media (max-width: 992px) {
  .credentials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-credentials-section {
    padding: 50px 16px;
  }
}/* End custom CSS */