
/* Sección '¿Por qué el Anglo es Único?' */
.about-section {
  padding: 80px 0;
  background: #fff;
}
.about-section .container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  align-items: center;
}
.about-card {
  position: relative;
  width: 100%;
  height: 550px;
  aspect-ratio: 4/5; /* altura proporcional */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(8,9,10,0.08);
  background-size: cover;
  background-position: center;
}
.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
}
.about-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.18);
  transition: background 0.28s ease, opacity 0.28s ease;
}

.about-card {
  transition: transform 0.32s ease, box-shadow 0.32s ease, filter 0.28s ease;
  /* filtro suave por defecto: un poco más oscuro */
  filter: brightness(0.94) saturate(0.98);
}

.about-card:hover {
  transform: scale(1.01);
  box-shadow: 0 26px 60px rgba(8,9,10,0.12);
}

.about-card-link {
  position: absolute;
  left: 24px;
  bottom: 64px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.45);
  transition: color 0.2s ease, opacity 0.2s ease;
  z-index: 3;
  cursor: pointer;
}

/* Hover: oscurecer overlay y asegurar texto blanco */
.about-card:hover .about-card-overlay {
  /* overlay ligeramente más oscuro al hover */
  background: rgba(0,0,0,0.52);
}
.about-card:hover .about-card-link {
  color: #ffffff;
}

.about-title {
  font-size: 52px;
  color: var(--blue-primary);
  font-weight: 700;
  margin: 0 0 18px 0;
  font-family: "Satoshi", "Satoshi Placeholder", sans-serif;
}

.about-text {
  color: #6b6b6b;
  font-family: "Figtree", "Figtree Placeholder", sans-serif;
  line-height: 1.8;
  margin-bottom: 22px;
  font-size: 18px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  font-family: "Figtree", "Figtree Placeholder", sans-serif;
  gap: 14px;
  font-weight: 600;
  color: #111;
  font-size: 22px;
}

.about-list .check { display: inline-flex; margin-top: 6px; }

@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-card { aspect-ratio: 16/9; }
  .about-title { font-size: 36px; }
}
