/* =========================
   ABOUT PAGE (style_about.css)
   ========================= */

/* Nota:
   - styles.css ya define .container, .btn, etc.
   - Aquí SOLO lo específico del About.
*/

:root{
  /* Core */
  --ink: #101828;            /* texto principal */
  --muted: #667085;          /* texto secundario */
  --soft: #F9FAFB;           /* fondo suave de sección */
  --white: #FFFFFF;

  /* Brand */
  --teal-dark: #073034;      /* teal principal (nav/hero/highlight) */
  --text-on-dark: #F2F4F7;   /* texto sobre fondos oscuros */

  /* Lines / overlays */
  --border-light: #E9EAEB;
  --overlay-10: rgba(255,255,255,0.10);
  --overlay-06: rgba(255,255,255,0.06);

  /* Shadows (Figma-like) */
  --shadow-sm: 0 5px 10px rgba(0,0,0,0.05);
  --shadow-md: 0 12px 26px rgba(16,24,40,0.06);
  --shadow-lg: 0 18px 40px rgba(16,24,40,0.10);

  /* Radius */
  --r-lg: 24px;
  --r-xl: 26px;
}

/* ====== NAV active ====== */
.nav__links .is-active{
  color: var(--text-on-dark);
  position: relative;
}
.nav__links .is-active::after{
  content:"";
  position:absolute;
  left: 6px;
  right: 6px;
  bottom: 6px;
  height: 2px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
}

/* ====== ABOUT: Kicker (si tu global no lo clava igual) ====== */
.about-section .kicker,
.about-hero .kicker{
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ====== HERO ABOUT ====== */
.about-hero{
  position: relative;
  background: var(--teal-dark);
  overflow: hidden;
  padding: 80px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

/* Fondo patrón */
.about-hero::before{
  content:"";
  position:absolute;
  inset:-140px -120px -160px -120px;
  background-image: url("../hero-bg.svg"); /* style_about.css está en /assets/css/ */
  background-repeat:no-repeat;
  background-size:cover;
  background-position:center;
  opacity:.55;
  transform: translateZ(0);
}

/* Máscara radial (Figma: radial de negro a transparente) */
.about-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(70% 70% at 50% 40%, rgba(0,0,0,.20), rgba(0,0,0,.55));
}

.about-hero__inner{
  position:relative;
  z-index:1;
  text-align:left;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:18px;
}

/* Pill */
.about-hero .kicker{
  margin:0;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  border: 1px solid var(--overlay-10);
  border-radius:999px;
  color: rgba(242,244,247,.85);
  font-size: 14px;
  background: var(--overlay-06);
  backdrop-filter: blur(10px);
}

/* Título (Figma: Cinzel) */
.about-hero__title{
  margin:0;
  max-width: 22ch;
  font-family: "Cinzel", serif;
  font-weight: 700;
  letter-spacing: .02em;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  text-transform: uppercase;
  color: rgba(242,244,247,.98);
}

/* Lead */
.about-hero__lead{
  margin:0;
  max-width: 68ch;
  color: rgba(242,244,247,.75);
  font-size: 16px;
  line-height: 26px;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* ====== SECTIONS BASE ====== */
.about-section{
  background: var(--white);
  padding: 88px 0;
}

/* H2 (Figma feel: bold, tight) */
.about-section h2{
  margin: 0 0 12px;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 700;
}

/* Section lead */
.section-lead{
  margin: 0;
  max-width: 78ch;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 18px;
  line-height: 30px;
  color: var(--muted);
}

/* ====== CEO SECTION (texto arriba + media abajo) ====== */
.about-ceo{
  background: var(--white);
}

.about-ceo__grid{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 44px;
}

.about-ceo__copy{
  max-width: 720px;
}

.about-ceo__copy .muted{
  margin: 10px 0 0;
  color: var(--muted);
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 18px;
  line-height: 30px;
}

.about-ceo__media{
  width: 100%;
}

.about-ceo__media .media-card{
  width: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(111.66deg, #073034 1.79%, #0A4B50 50%);
  box-shadow: var(--shadow-lg);
  min-height: 420px;
  position: relative;
}

.about-ceo__media .media-img{
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
}

/* Play overlay */
.about-ceo__media .media-card::after{
  content:"";
  position:absolute;
  inset:0;
  margin:auto;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 3px solid rgba(255,255,255,.90);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.06), rgba(255,255,255,0) 70%);
}

.about-ceo__media .media-card::before{
  content:"";
  position:absolute;
  left: 50%;
  top: 50%;
  transform: translate(-35%, -50%);
  width: 0;
  height: 0;
  border-left: 14px solid rgba(255,255,255,.92);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  z-index: 1;
}

/* ====== INVESTMENT PHILOSOPHY ====== */
.about-section.about-philosophy{
  background: var(--soft);
}

.about-section.about-philosophy .kicker{
  margin: 0 0 10px;
  color: rgba(7,48,52,.75);
  font-size: 16px;
  line-height: 24px;
}

.about-section.about-philosophy h2{
  margin: 0 0 12px;
  max-width: 28ch;
}

.about-section.about-philosophy .section-lead{
  max-width: 82ch;
  margin-bottom: 64px; /* gap Figma */
}

/* Grid 3 columnas (desktop) */
.about-section.about-philosophy .feature-grid{
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

/* Cards base */
.about-section.about-philosophy .feature-card{
  position: relative;
  border-radius: var(--r-lg);
  padding: 28px 28px 26px;
  background: var(--white);
  border: 1px solid rgba(16,24,40,0.06);
  box-shadow: var(--shadow-md);
  min-height: 210px;
  overflow: hidden;
}

/* Icon placeholder (sin tocar HTML) */
.about-section.about-philosophy .feature-card::before{
  content:"";
  display:block;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  margin-bottom: 18px;
  background: rgba(16,24,40,0.06);
}

/* Título y texto */
.about-section.about-philosophy .feature-card h3{
  margin: 0 0 10px;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: var(--ink);
}

.about-section.about-philosophy .feature-card p{
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: #475467;
}

/* Primera card highlight */
.about-section.about-philosophy .feature-card:first-child{
  background: var(--teal-dark);
  border-color: rgba(255,255,255,0.10);
  box-shadow: var(--shadow-lg);
}

.about-section.about-philosophy .feature-card:first-child::before{
  background: rgba(255,255,255,0.14);
}

.about-section.about-philosophy .feature-card:first-child h3{
  color: rgba(242,244,247,.98);
}

.about-section.about-philosophy .feature-card:first-child p{
  color: rgba(242,244,247,.78);
}

/* ====== TEAM ====== */
.team-grid{
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.person-card{
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 26px;
  border: 1px solid rgba(16,24,40,0.06);
  box-shadow: 0px 18px 44px rgba(16,24,40,0.08);
}

.person-avatar{
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: linear-gradient(111.66deg, #073034 1.79%, #0A4B50 50%);
  margin-bottom: 16px;
}

.person-name{
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.person-role{
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 15px;
  line-height: 22px;
  font-weight: 600;
  color: rgba(7,48,52,.78);
  margin-bottom: 16px;
}

.person-bullets{
  margin: 0;
  padding-left: 18px;
  color: #475467;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 15px;
  line-height: 24px;
}

.person-bullets li{ margin-bottom: 10px; }
.person-bullets li:last-child{ margin-bottom: 0; }











/* ====== INVESTOR PROFILES (2 columnas + imagen) ====== */
.about-section.about-profiles{
  background: var(--white);
}

/* Layout: izquierda cards, derecha imagen */
.profiles-layout{
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;  /* izquierda un poquito más ancha */
  gap: 48px;
  align-items: start;
}

/* Columna izquierda: cards en stack */
.profiles-list{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Card como screenshot: blanca, sombra suave, línea teal a la izquierda */
.profile-card{
  position: relative;
  background: var(--white);
  border-radius: 12px;
  padding: 18px 18px 18px 22px;
  border: 1px solid rgba(16,24,40,0.06);
  box-shadow: var(--shadow-sm);
}

.profile-card::before{
  content:"";
  position:absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  background: var(--teal-dark); /* línea teal */
  border-radius: 2px;
}

/* Título de cada card */
.profile-card h3{
  margin: 0 0 8px;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: var(--ink);
}

/* Texto */
.profile-card p{
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: var(--muted);
}

/* Columna derecha: imagen grande */
.profiles-media__card{
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #ddd;
  box-shadow: 0px 18px 40px rgba(16,24,40,0.10);
  border: 1px solid rgba(16,24,40,0.06);
}

.profiles-media__card img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1 / 1; /* para que se vea como el cuadro del screenshot */
}




























/* ====== CTA ====== */
.about-cta{
  background: var(--white);
  padding: 60px 0 96px;
}

.about-cta__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(16,24,40,0.08);
  box-shadow: 0px 18px 40px rgba(16,24,40,0.08);
}

.about-cta__copy .muted{
  margin: 10px 0 0;
  color: var(--muted);
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 26px;
  max-width: 72ch;
}
