/* =========================
   ABOUT.CSS (mockup exact vibe)
   ========================= */

:root{
  --orange:#ff6b35;
  --purple:#2a001f;
  --purple2:#3b002a;
  --text:#1a1a1a;
  --muted:#444;
  --max:1100px;
  --code:'Source Code Pro', monospace;
  --sans:'Source Sans 3', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* =========================
   INTRO (top white section)
   ========================= */

.about-intro{
  background:#fff;
  padding: 90px 0 70px;
}

.about-wrap{
  width: min(var(--max), 92vw);
  margin: 0 auto;
  text-align: left;
}

/* la rayita naranja pequeña (arriba/izq del texto) */
.about-accent{
  width: 14px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 0 0 16px 0;
  margin-left: -20px;
}

.about-text {
    max-width: 106%;
    width: 110%;
    font-family: var(--sans);
    color: var(--text);
    font-size: 17px;
    line-height: 1.65;
    margin-left: -20px;
}


.about-text p{
  margin: 0 0 14px 0;
}

/* =========================
   VALUES
   ========================= */

.values-title{
  margin: 44px 0 18px;
  text-align: center;
  font-family: var(--code);
  font-style: italic;
  font-weight: 500;
  color:#4a1942;
  letter-spacing: .2px;
}

.values-grid{
  width: min(720px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 90px;
  row-gap: 16px;
}

.value-item{
  display:flex;
  align-items:center;
  gap: 14px;
}

.value-box{
  width: 22px;
  height: 22px;
  background: var(--orange);
  border-radius: 4px;
  flex: 0 0 22px;
}

.value-label{
  position: relative;
  display: inline-flex;
  align-items: center;
  font-family: var(--code);
  font-style: italic;
  font-weight: 600;
  font-size: 12px;
  color: #1c1c1c;
  letter-spacing: .2px;
  width: 100%;
  padding-bottom: 2px;
}

/* línea horizontal a la derecha como en el mockup */
.value-label::after{
  content:"";
  height: 1px;
  background: rgba(0,0,0,.35);
  flex: 1;
  margin-left: 18px;
  transform: translateY(2px);
}

/* =========================
   TEAM FULL WIDTH (purple section)
   ========================= */

.team-section{
  /* full width real sin “márgenes” */
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #42012C;
  padding: 42px 0 54px;
  border-bottom: 3px solid var(--orange); /* línea naranja arriba del footer */
}

.team-wrap{
  width: min(var(--max), 92vw);
  margin: 0 auto;
  text-align: center;
}

.team-title{
  margin: 0;
  font-family: var(--code);
  font-style: italic;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: .2px;
  font-size: 26px;
}

.team-subtitle{
  margin: 8px 0 26px;
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(255,255,255,.85);
}

/* grid 3x2 */
.team-grid{
  width: min(820px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px 38px;
}

.team-card{
  text-align: center;
}

.team-card img{
  width: 190px;
  height: 190px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  margin: 0 auto 10px;
  /* NO background extra: las imágenes ya tienen fondo */
}

.team-card h4{
  margin: 0;
  font-family: var(--code);
  font-style: italic;
  font-size: 15px;
  font-weight: 600;
  color: var(--orange);
}

.team-card span{
  display:block;
  margin-top: 4px;
  font-family: var(--sans);
  font-size: 11px;
  color: rgba(255,255,255,.8);
}

.team-line{
  width: 72px;
  height: 1px;
  margin: 10px auto 0;
  background: rgba(255,255,255,.35);
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 900px){
  .values-grid{ column-gap: 40px; }
  .team-grid{
    grid-template-columns: repeat(2, 1fr);
    width: min(640px, 92vw);
  }
}

@media (max-width: 560px){
  .about-intro{ padding: 70px 0 52px; }
  .about-text{ font-size: 12px; }

  .values-grid{
    grid-template-columns: 1fr;
    row-gap: 14px;
  }
  .value-label::after{ margin-left: 14px; }

  .team-grid{
    grid-template-columns: 1fr;
    width: min(360px, 92vw);
  }
}

.values-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 60px;
  row-gap: 18px;
  margin-top: 22px;
}

.value-row{
  display:flex;
  align-items:center;
  gap:14px;
}

.value-dot{
  width:18px;
  height:18px;
  background:#ff6b35;
  border-radius:4px;
  flex-shrink:0;
}

.value-text{
  font-family: 'Source Code Pro', monospace;
  font-size:13px;
  font-weight:600;
  font-style:italic;
  color:#111;
  min-width:110px;
}

.value-line{
  flex:1;
  height:1px;
  background:#b8b8b8;
}
/* =========================
   ABOUT.CSS (mockup exact vibe)
   ========================= */

:root{
  --orange:#ff6b35;
  --purple:#2a001f;
  --purple2:#3b002a;
  --text:#1a1a1a;
  --muted:#444;
  --max:1100px;
  --code:'Source Code Pro', monospace;
  --sans:'Source Sans 3', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* =========================
   INTRO (top white section)
   ========================= */

.about-intro{
  background:#fff;
  padding: 90px 0 70px;
}

.about-wrap{
  width: min(var(--max), 92vw);
  margin: 0 auto;
  text-align: left;
}

/* la rayita naranja pequeña (arriba/izq del texto) */
.about-accent{
  width: 14px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 0 0 16px 0;
  margin-left: -20px;
}

.about-text {
    max-width: 106%;
    width: 110%;
    font-family: var(--sans);
    color: var(--text);
    font-size: 17px;
    line-height: 1.65;
    margin-left: -20px;
}


.about-text p{
  margin: 0 0 14px 0;
}

/* =========================
   VALUES
   ========================= */

.values-title{
  margin: 44px 0 18px;
  text-align: center;
  font-family: var(--code);
  font-style: italic;
  font-weight: 500;
  color:#4a1942;
  letter-spacing: .2px;
}

.values-grid{
  width: min(720px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 90px;
  row-gap: 16px;
}

.value-item{
  display:flex;
  align-items:center;
  gap: 14px;
}

.value-box{
  width: 22px;
  height: 22px;
  background: var(--orange);
  border-radius: 4px;
  flex: 0 0 22px;
}

.value-label{
  position: relative;
  display: inline-flex;
  align-items: center;
  font-family: var(--code);
  font-style: italic;
  font-weight: 600;
  font-size: 12px;
  color: #1c1c1c;
  letter-spacing: .2px;
  width: 100%;
  padding-bottom: 2px;
}

/* línea horizontal a la derecha como en el mockup */
.value-label::after{
  content:"";
  height: 1px;
  background: rgba(0,0,0,.35);
  flex: 1;
  margin-left: 18px;
  transform: translateY(2px);
}

/* =========================
   TEAM FULL WIDTH (purple section)
   ========================= */

.team-section{
  /* full width real sin “márgenes” */
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #42012C;
  padding: 42px 0 54px;
  border-bottom: 3px solid var(--orange); /* línea naranja arriba del footer */
}

.team-wrap{
  width: min(var(--max), 92vw);
  margin: 0 auto;
  text-align: center;
}

.team-title{
  margin: 0;
  font-family: var(--code);
  font-style: italic;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: .2px;
}

.team-subtitle{
  margin: 8px 0 26px;
  font-family: var(--sans);
  font-size: 11px;
  color: rgba(255,255,255,.85);
}

/* grid 3x2 */
.team-grid{
  width: min(820px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px 38px;
}

.team-card{
  text-align: center;
}

.team-card img{
  width: 190px;
  height: 190px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  margin: 0 auto 10px;
  /* NO background extra: las imágenes ya tienen fondo */
}

.team-card h4{
  margin: 0;
  font-family: var(--code);
  font-style: italic;
  font-size: 15px;
  font-weight: 600;
  color: var(--orange);
}

.team-card span{
  display:block;
  margin-top: 4px;
  font-family: var(--sans);
  font-size: 11px;
  color: rgba(255,255,255,.8);
}

.team-line{
  width: 72px;
  height: 1px;
  margin: 10px auto 0;
  background: rgba(255,255,255,.35);
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 900px){
  .values-grid{ column-gap: 40px; }
  .team-grid{
    grid-template-columns: repeat(2, 1fr);
    width: min(640px, 92vw);
  }
}

@media (max-width: 560px){
  .about-intro{ padding: 70px 0 52px; }
  .about-text{ font-size: 12px; }

  .values-grid{
    grid-template-columns: 1fr;
    row-gap: 14px;
  }
  .value-label::after{ margin-left: 14px; }

  .team-grid{
    grid-template-columns: 1fr;
    width: min(360px, 92vw);
  }
}

.values-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 60px;
  row-gap: 18px;
  margin-top: 22px;
}

.value-row{
  display:flex;
  align-items:center;
  gap:14px;
}

.value-dot{
  width:18px;
  height:18px;
  background:#ff6b35;
  border-radius:4px;
  flex-shrink:0;
}

.value-text{
  font-family: 'Source Code Pro', monospace;
  font-size:13px;
  font-weight:600;
  font-style:italic;
  color:#111;
  min-width:110px;
}

.value-line{
  flex:1;
  height:1px;
  background:#b8b8b8;
}
/* Cada valor: 2 columnas (dot + contenido) y 2 filas (texto / línea) */
.value-row{
  display: grid;
  grid-template-columns: 18px 1fr;  /* dot | contenido */
  grid-template-rows: auto auto;    /* texto | línea */
  column-gap: 14px;
  row-gap: 6px;
  align-items: center;
}

.value-dot{
  grid-column: 1;
  grid-row: 1;   /* queda al lado del texto */
}

.value-text{
  grid-column: 2;
  grid-row: 1;
  min-width: 0; /* por si hay textos largos */
}

.value-line{
  grid-column: 2;  /* ✅ debajo del texto (no debajo del dot) */
  grid-row: 2;
  width: 100%;
  height: 1px;
  background: #b8b8b8;
}
.values-title{
  font-size: 20px;          /* antes 16px */
  margin: 50px 0 22px;      /* más aire arriba/abajo */
}

.values-grid{
  width: min(820px, 92vw);  /* antes 720px → más ancho */
  row-gap: 20px;            /* más espacio entre filas */
}

.value-text{
  font-size: 16px;          /* texto un poco más grande */
}
.values-title{
  text-align: left;
  margin-left: 140px;  /* ajusta este valor a tu gusto */
}

@media (max-width: 560px){

  /* ===== Ajuste general del intro ===== */
  .about-intro{
    padding: 60px 0 40px;
  }

  .about-wrap{
    width: min(420px, 92vw);
  }

  /* quita ese “corrimiento” raro en mobile */
  .about-accent,
  .about-text{
    margin-left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .about-text{
    font-size: 12px;
    line-height: 1.7;
  }

  /* ===== Title: como en tu captura (centrado-ish, pero no pegado) ===== */
  .values-title{
    text-align: left;
    margin: 26px 0 16px;
    margin-left: 14px !important;   /* ✅ pequeño desplazamiento */
    font-size: 18px;
  }

  /* ===== Values: 1 columna y más aire ===== */
  .values-grid{
    width: 100%;
    grid-template-columns: 1fr !important;
    row-gap: 18px;
    padding: 0 14px;               /* ✅ respiración lateral como mockup */
    margin-top: 12px;
  }

  /* cada fila */
  .value-row{
    grid-template-columns: 22px 1fr;  /* dot un poco más grande */
    row-gap: 8px;
  }

  .value-dot{
    width: 22px;
    height: 22px;
    border-radius: 5px;
  }

  .value-text{
    font-size: 13px;
    min-width: 0;
  }

  .value-line{
    height: 1px;
    opacity: .85;
  }

  /* ===== Team: que se vea como tu screenshot ===== */
  .team-section{
    padding: 34px 0 44px;
  }

  .team-title{
    font-size: 20px;
    text-align: left;
    width: min(420px, 92vw);
    margin: 0 auto;
    padding-left: 14px;
  }

  .team-subtitle{
    text-align: left;
    width: min(420px, 92vw);
    margin: 8px auto 22px;
    padding-left: 14px;
    font-size: 11px;
  }

  .team-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 16px;
    width: min(420px, 92vw);
  }

  .team-card img{
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
  }

  .team-card h4{ font-size: 12px; }
  .team-card span{ font-size: 10px; }
}
@media (max-width: 560px){

  /* ✅ La rayita naranja debe ser pequeña, NO una barra */
  .about-accent{
    width: 14px !important;
    height: 4px !important;
    border-radius: 2px !important;
    margin: 0 0 14px 14px !important;  /* pegadita a la izquierda */
  }

  /* ✅ Evita que .about-text se salga y "empuje" cosas raro */
  .about-text{
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    padding: 0 14px;                 /* margen interno como en tu foto */
  }

  /* ✅ Contenedor para que todo quede alineado */
  .about-wrap{
    width: min(420px, 92vw);
  }
}


