.elementor-2689 .elementor-element.elementor-element-2c2109c{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-cd360cb *//* VARIABLES GLOBALES DEL PERFIL */
.ariel-profile-wrapper {
  --primary-color: #252b6d; /* Azul corporativo */
  --accent-color: #f4d03f;  /* Amarillo/Dorado secundario */
  --text-dark: #334155;
  --bg-light: #f8fafc;
  
  font-family: system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================================
   HERO GRID (Móvil Primero -> Escritorio)
   ========================================= */
.ariel-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  padding: 4rem 2rem;
  background-color: var(--bg-light);
  border-radius: 12px;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .ariel-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.ariel-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.ariel-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--primary-color);
  margin: 0;
}

.ariel-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.ariel-lead {
  font-size: 1.125rem;
  line-height: 1.6;
}

.ariel-cta-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.ariel-cta-btn:hover {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.ariel-hero-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* =========================================
   BIOGRAPHY GRID
   ========================================= */
.ariel-bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 0 2rem;
}

@media (min-width: 992px) {
  .ariel-bio-grid {
    grid-template-columns: 2fr 1fr; 
  }
}

.bio-heading {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.bio-main-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.bio-stats-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: #ffffff;
  border-left: 4px solid var(--accent-color);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-dark);
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* =========================================
   LOGOS INSTITUCIONALES (Flexbox)
   ========================================= */
.logos-heading {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--accent-color);
  display: inline-block;
  padding-bottom: 0.25rem;
}

.institutional-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
  justify-content: flex-start;
  margin-top: 1rem;
}

.inst-logo {
  max-width: 140px; 
  max-height: 70px;
  object-fit: contain;
  /* Efecto visual elegante para estudios jurídicos: escala de grises hasta que se pasa el cursor */
  filter: grayscale(100%) opacity(0.7); 
  transition: all 0.3s ease;
}

.inst-logo:hover {
  filter: grayscale(0%) opacity(1);
}/* End custom CSS */