.about-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 12%, rgba(235, 155, 157, .13), transparent 19%),
    radial-gradient(circle at 96% 88%, rgba(131, 200, 187, .13), transparent 20%),
    #fff;
}

.about-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .72fr);
  gap: 24px;
}

.history-panel,
.founder-profile {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 20px 55px rgba(13, 49, 91, .08);
}

.history-panel { padding: 32px; }

.about-card-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.about-card-heading > span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(145deg, #fce4e7, #fff1dc);
  color: var(--pink2);
  font-size: 25px;
}

.about-card-heading small,
.pillar-toggle small {
  color: var(--pink2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.about-card-heading h3 {
  margin: 3px 0 0;
  color: var(--navy);
  font: 700 27px Georgia, serif;
}

.history-intro {
  margin: 0 0 23px;
  color: var(--muted);
  font-size: 16px;
}

.history-timeline { position: relative; }
.history-timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 20px;
  width: 2px;
  background: linear-gradient(var(--pink), var(--mint));
}

.history-step {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 8px 0 14px;
}

.history-step > b {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  box-shadow: 0 6px 17px rgba(229, 111, 134, .28);
}

.history-step:nth-child(2) > b { background: #7bbfb4; }
.history-step:nth-child(3) > b { background: #8a79bc; }
.history-step span { color: var(--pink2); font-size: 13px; font-weight: 900; text-transform: uppercase; }
.history-step h4 { margin: 3px 0 6px; color: var(--navy); font-size: 19px; }
.history-step p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }

.about-facts {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.about-facts > div {
  padding: 13px 10px;
  display: flex;
  flex-direction: column;
  border-radius: 13px;
  background: #fff8f6;
  text-align: center;
}
.about-facts strong { color: var(--navy); font-size: 17px; line-height: 1.25; }
.about-facts span { margin-top: 5px; color: var(--muted); font-size: 14px; line-height: 1.35; }

.founder-profile {
  overflow: hidden;
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease;
}
.founder-profile:hover { transform: translateY(-7px); box-shadow: 0 28px 65px rgba(13, 49, 91, .14); }
.founder-profile:focus-visible { outline: 4px solid rgba(229, 111, 134, .3); outline-offset: 4px; }
.founder-photo { height: 330px; overflow: hidden; background: #e9eef1; }
.founder-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transition: transform .6s ease;
}
.founder-profile:hover .founder-photo img { transform: scale(1.045); }
.founder-content { padding: 26px; }
.founder-content .tag { font-size: 13px; }
.founder-content h3 { margin: 8px 0 10px; color: var(--navy); font: 700 27px Georgia, serif; }
.founder-credentials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px 9px;
  margin: 0 0 14px;
  padding: 12px 14px;
  border-left: 4px solid var(--pink2);
  border-radius: 0 11px 11px 0;
  background: linear-gradient(135deg, #edf5fc, #f8fbfe);
  color: var(--navy);
}
.founder-credentials strong {
  font-size: 16px;
  line-height: 1.25;
}
.founder-credentials strong + strong::before {
  content: "•";
  margin-right: 9px;
  color: var(--pink2);
}
.founder-credentials span {
  flex-basis: 100%;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .035em;
}
.founder-content p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.founder-badges { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 7px; }
.founder-badges span { padding: 9px 13px; border-radius: 999px; background: #f8eeee; color: var(--navy); font-size: 14px; line-height: 1.25; font-weight: 800; }
.founder-open-hint { margin-top: 17px; display: inline-flex; align-items: center; gap: 8px; color: var(--pink2); font-size: 14px; font-weight: 900; }
.founder-open-hint b { font-size: 19px; transition: transform .25s ease; }
.founder-profile:hover .founder-open-hint b { transform: translateX(5px); }

/* Ventana didáctica de la fundadora */
.founder-modal {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease;
}
.founder-modal.open { opacity: 1; visibility: visible; }
.founder-modal-backdrop { position: absolute; inset: 0; border: 0; background: rgba(5, 25, 49, .84); backdrop-filter: blur(8px); cursor: pointer; }
.founder-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(1040px, 95vw);
  max-height: 92vh;
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(420px, 1.2fr);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 36px 100px rgba(0,0,0,.42);
  transform: translateY(22px) scale(.97);
  transition: transform .32s ease;
}
.founder-modal.open .founder-modal-dialog { transform: translateY(0) scale(1); }
.founder-modal-visual { position: relative; min-height: 590px; overflow: hidden; background: var(--navy); }
.founder-modal-visual::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(5,25,49,.94)); }
.founder-modal-visual img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 66% center; }
.founder-modal-visual > div { position: absolute; z-index: 2; right: 28px; bottom: 30px; left: 28px; color: #fff; }
.founder-modal-visual span { display: block; color: #ffd4d8; font-size: 12px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.founder-modal-visual strong { display: block; margin: 8px 0 5px; font: 700 28px Georgia, serif; }
.founder-modal-visual small { font-size: 15px; }
.founder-modal-content { padding: 38px; overflow-y: auto; }
.founder-modal-kicker { color: var(--pink2); font-size: 12px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.founder-modal-content h3 { margin: 8px 45px 12px 0; color: var(--navy); font: 700 30px/1.18 Georgia, serif; }
.founder-modal-lead { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.founder-modal-content blockquote { margin: 18px 0; padding: 15px 18px; border-left: 4px solid var(--pink2); border-radius: 0 13px 13px 0; background: linear-gradient(135deg, #fff2f3, #f1f8fc); color: var(--navy); font: 700 17px/1.55 Georgia, serif; }
.founder-modal-principles { display: grid; gap: 10px; }
.founder-modal-principles article { display: grid; grid-template-columns: 43px 1fr; gap: 12px; align-items: start; padding: 13px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.founder-modal-principles i { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 12px; background: #fff0f1; color: var(--pink2); font-style: normal; font-size: 20px; }
.founder-modal-principles h4 { margin: 0 0 3px; color: var(--navy); font-size: 16px; }
.founder-modal-principles p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.founder-modal-credentials { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px 14px; padding: 12px 15px; border-radius: 12px; background: var(--navy); color: #fff; }
.founder-modal-credentials span { color: #dce9f5; font-weight: 700; }
.founder-modal-close { position: absolute; z-index: 5; top: 14px; right: 14px; width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--navy); color: #fff; font-size: 25px; cursor: pointer; transition: transform .25s ease, background .25s ease; }
.founder-modal-close:hover { transform: rotate(90deg); background: var(--pink2); }

/* Beneficios principales: mayor legibilidad sin perder el equilibrio del hero. */
.trust { gap: 20px; font-size: 14px; line-height: 1.4; }

.interactive-pillars { align-items: start; }
.pillar-card { padding: 23px; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.pillar-card:hover { transform: translateY(-6px); border-color: var(--pink); box-shadow: 0 20px 45px rgba(13, 49, 91, .1); }
.pillar-toggle {
  width: 100%;
  padding: 0;
  display: grid;
  grid-template-columns: 52px 1fr 34px;
  align-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.pillar-toggle i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #e5f4f1;
  color: #57a99d;
  font-size: 28px;
  font-style: normal;
}
.pillar-card:nth-child(2) .pillar-toggle i { background: #e8ecfa; color: #7185c2; }
.pillar-card:nth-child(3) .pillar-toggle i { background: #fce7e9; color: var(--pink2); }
.pillar-toggle h3 { margin: 3px 0 0; color: var(--navy); font-size: 21px; text-transform: uppercase; }
.pillar-toggle > b {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 20px;
  transition: transform .3s ease, background .3s ease;
}
.pillar-summary { min-height: 62px; margin: 18px 0 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.pillar-detail {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  color: var(--muted);
  transition: max-height .5s ease, opacity .35s ease, margin .35s ease;
}
.pillar-detail p { margin: 0; font-size: 15px; line-height: 1.7; }
.pillar-card.expanded .pillar-detail { max-height: 260px; margin-top: 15px; opacity: 1; }
.pillar-card.expanded .pillar-toggle > b { transform: rotate(45deg); background: var(--pink2); }
.values-list { display: flex; flex-wrap: wrap; gap: 7px; }
.values-list span { padding: 8px 11px; border-radius: 999px; background: #fff0f1; color: var(--navy); font-size: 13px; font-weight: 800; }

@media (max-width: 1050px) {
  .about-showcase { grid-template-columns: 1.2fr .8fr; }
  .about-facts { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .about-showcase { grid-template-columns: 1fr; }
  .history-panel { padding: 24px 20px; }
  .about-card-heading h3 { font-size: 23px; }
  .about-facts { grid-template-columns: 1fr; }
  .founder-photo { height: 400px; }
  .founder-content { padding: 23px 20px; }
  .interactive-pillars { grid-template-columns: 1fr; }
  .pillar-summary { min-height: 0; }
  .history-intro { font-size: 15px; }
  .history-step h4 { font-size: 18px; }
  .history-step p { font-size: 14px; }
  .founder-content p, .pillar-summary { font-size: 15px; }
  .founder-credentials strong { font-size: 15px; }
  .founder-credentials span { font-size: 14px; }
  .founder-modal { padding: 10px; }
  .founder-modal-dialog { grid-template-columns: 1fr; max-height: 95vh; overflow-y: auto; border-radius: 19px; }
  .founder-modal-visual { min-height: 285px; }
  .founder-modal-content { padding: 25px 20px 28px; overflow: visible; }
  .founder-modal-content h3 { margin-right: 35px; font-size: 24px; }
  .founder-modal-content blockquote { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .founder-profile, .founder-photo img, .founder-open-hint b, .founder-modal-dialog { transition: none; }
}
