
:root {
  --orange: #E85D04;
  --orange2: #F47B2A;
  --black: #111111;
  --ink: #1A1A1A;
  --text: #2C2C2C;
  --muted: #7A7A7A;
  --light: #F5F2EE;
  --white: #FFFFFF;
  --indigo: #3D52A0;
  --indigo-light: #4A63BE;
  --border: #E0DDD8;
  --section-alt: #F8F6F2;
  --grey: #656565;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-logo {
  font-size: 1rem; font-weight: 900; letter-spacing: 0.04em;
  text-decoration: none; display: flex; align-items: center; gap: 0;
  line-height: 1;
}
.nav-logo .part-orange { color: var(--orange); }
.nav-logo .part-on { color: var(--grey); }
.nav-logo .part-rest { color: var(--black); }
.nav-links { display: flex; gap: 0.2rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.4rem 0.8rem;
  border-radius: 3px; transition: color 0.2s;
}
.nav-links a:hover { color: var(--black); }
.nav-cta {
  background: var(--orange) !important; color: var(--white) !important;
  padding: 0.55rem 1.3rem !important; border-radius: 3px;
  font-weight: 700 !important; font-size: 0.72rem !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--orange2) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--black); transition: 0.3s; }

.nav-logo img {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
}


/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 110px 5% 60px;
  position: relative; overflow: hidden;
  background: var(--light);
}
.hero-photo-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1553877522-43269d4ea984?w=1600&q=80&auto=format&fit=crop') center/cover no-repeat;
  opacity: 0.12;
}
.hero-photo-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(245,242,238,0.3) 0%, rgba(245,242,238,0.6) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 900px; }
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 900; line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 1.2rem;
}
.hero-title .t-orange { color: var(--orange); }
.hero-title .t-black { color: var(--grey); }
.hero-subtitle {
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  color: var(--muted); font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  margin-bottom: 1.8rem;
}

.hero-desc {
  max-width: 660px; margin: 0 auto 3rem;
  font-size: 1rem; line-height: 1.75;
  color: var(--text); font-weight: 400;
}
.hero-stats {
  display: flex; justify-content: center; gap: 5rem;
  flex-wrap: wrap; margin-top: 0;
}
.hero-stat { text-align: center; }
.hero-stat-icon {
  width: 44px; height: 44px; margin-bottom: 0.9rem;
  color: var(--indigo);
  margin: 0 auto;
}
.hero-stat-num {
  font-size: 2.6rem; font-weight: 900; line-height: 1;
  color: var(--black); letter-spacing: -0.02em;
}
.hero-stat-label {
  font-size: 0.78rem; color: var(--muted);
  margin-top: 0.25rem; font-weight: 500;
}
.hero-divider {
  width: 1px; height: 60px; background: var(--border);
  align-self: center;
}


@media (max-width: 768px) {

  #hero {
    padding: 90px 6% 50px;
    min-height: auto;
  }

  .hero-title {
    line-height: 1;
    margin-bottom: 1rem;
  }

  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  .hero-stats {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1.2rem;
    flex-wrap: nowrap;
    width: 100%;
  }

  .hero-stat {
    text-align: center;
    flex: 1;
    min-width: 0;
  }

  .hero-stat-icon {
    margin: 0 auto 0.6rem;
    width: 34px;
    height: 34px;
  }

  .hero-stat-num {
    font-size: 1.3rem;
    line-height: 1;
  }

  .hero-stat-label {
    font-size: 0.68rem;
    line-height: 1.3;
  }

  .hero-divider {
    height: 45px;
  }
}


/* ── SECTIONS ── */
section { padding: 90px 5%; }
.container { max-width: 1180px; margin: 0 auto; }
.section-eyebrow {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 0.8rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; line-height: 1.05;
  color: var(--black); margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}
.section-lead {
  font-size: 0.95rem; line-height: 1.8; color: var(--muted);
  /* max-width: 700px;  */
  font-weight: 400;
}

/* ── QUIENES ──
#quienes { background: var(--white); }
.quienes-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 6rem;
  align-items: start; margin-top: 3.5rem;
}
.quienes-text p {
  font-size: 0.92rem; line-height: 1.85; color: var(--text);
  margin-bottom: 1.1rem; font-weight: 400;
}
.esencia-list { display: flex; flex-direction: column; gap: 0; }
.esencia-item {
  display: grid; grid-template-columns: 52px 1fr;
  gap: 1.2rem; align-items: start;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--border);
}
.esencia-item:first-child { border-top: 1px solid var(--border); }
.esencia-num {
  font-size: 1.8rem; font-weight: 900;
  color: var(--orange); line-height: 1;
  letter-spacing: -0.03em;
}
.esencia-item h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.35rem; color: var(--black); }
.esencia-item p { font-size: 0.82rem; color: var(--muted); line-height: 1.65; } */



/* ─────────────────────────
   QUIÉNES SOMOS
───────────────────────── */

#quienes {
  padding: 120px 5%;
  /* background: #f5f5f5; */
  background: #fff;
}

.quienes-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 5rem;
  align-items: start;
  margin-top: 4rem;
}

/* ── TEXTO IZQUIERDA ── */

.quienes-text p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: #333;
  margin-bottom: 2rem;
}

.quienes-text strong {
  font-weight: 700;
  color: #111;
}

/* ── CARD DERECHA ── */

.esencia-list {
  background: #173b78;
  border-radius: 18px;
  padding: 1.5rem 2.5rem;
  color: white;
  position: sticky;
  top: 120px;
  box-shadow:
    0 20px 50px rgba(0,0,0,0.08);
}

/* TITULO */

.esencia-header {
  margin-bottom: 2rem;
}

.esencia-header h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.esencia-header p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}

/* ITEMS */

.esencia-item {
  padding: 1.6rem 0;
  border-top: 1px solid rgba(255,255,255,0.18);
}

.esencia-item:first-of-type {
  border-top: none;
  padding-top: 0;
}

.esencia-num {
  font-size: 1.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.8rem;
}

.esencia-item h4 {
  font-size: 1.7rem;
  line-height: 1.2;
  margin-bottom: 0.8rem;
  font-weight: 800;
  color: white;
}

.esencia-item p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}

/* ── RESPONSIVE ── */

@media (max-width: 992px) {

  .quienes-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .esencia-list {
    position: relative;
    top: auto;
  }
}

@media (max-width: 768px) {

  #quienes {
    padding: 90px 6%;
  }

  .quienes-text p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .esencia-list {
    padding: 2rem;
    border-radius: 16px;
  }

  .esencia-header h3 {
    font-size: 1.7rem;
  }

  .esencia-item h4 {
    font-size: 1.4rem;
  }

  .esencia-item p,
  .esencia-header p {
    font-size: 1rem;
  }
}








/* ── ESPECIALIDADES ── */
#especialidades { 
  /* background: var(--section-alt);  */
    background: #fff;
}
.esp-header { margin-bottom: 3.5rem; }
.esp-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
  /* background: var(--border); */
}
.esp-card {
  background: var(--white);
  padding: 2.8rem 2.2rem;
  position: relative; overflow: hidden;
  transition: background 0.2s;
}
.esp-card:hover { background: #FEFCFA; }
.esp-card-num {
  font-size: 4rem; font-weight: 900; line-height: 1;
  color: rgba(0,0,0,0.05); letter-spacing: -0.04em;
  position: absolute; top: 1.2rem; right: 1.5rem;
}
.esp-icon {
  width: 48px; height: 48px; margin-bottom: 1.8rem;
  color: var(--indigo);
}
.esp-card h3 {
  font-size: 1.05rem; font-weight: 800; margin-bottom: 0.8rem;
  color: var(--black); line-height: 1.25;
}
.esp-card p {
  font-size: 0.84rem; line-height: 1.75; color: var(--muted);
}
.esp-card-bar {
  width: 32px; height: 3px; background: var(--orange);
  margin-bottom: 1.5rem;
}




/* ── PRESENCIA ── */
/* #presencia { background: var(--white); }
.presencia-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5px;
  background: var(--border); margin-top: 3.5rem;
  border: 1.5px solid var(--border);
}
.pais-card {
  background: var(--white); padding: 1.6rem 1.4rem;
  transition: background 0.2s;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.pais-card:hover { background: var(--section-alt); }
.pais-flag { font-size: 2rem; line-height: 1; }
.pais-card h4 { font-size: 0.95rem; font-weight: 800; color: var(--black); }
.pais-card p { font-size: 0.78rem; color: var(--muted); line-height: 1.5; } */

/* ─────────────────────────
   PRESENCIA INTERNACIONAL
───────────────────────── */

#presencia {
  padding: 120px 5%;
  /* background: #f5f5f5; */
  background: #fff;
}

#presencia .section-lead {
  max-width: 1050px;
  font-size: 1.08rem;
  line-height: 1.85;
  color: #333;
  margin-top: 2rem;
  margin-bottom: 4rem;
}

/* ── GRID ── */

.presencia-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.3rem;
}

/* ── CARD ── */

.pais-card {
  background: #dfe1f2;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 10px;
  padding: 1.3rem;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.pais-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.08);
}

/* ── FLAG ── */

.pais-flag {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #4b52c7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

/* ── TEXTOS ── */

.pais-card h4 {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.1;
  color: #2b2b2b;
  margin-bottom: 0.8rem;
}

.pais-card p {
  font-size: 1rem;
  line-height: 1.65;
  color: #3e3e3e;
  margin: 0;
}

/* ── RESPONSIVE ── */

@media (max-width: 992px) {

  .presencia-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  #presencia {
    padding: 90px 6%;
  }

  #presencia .section-lead {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
  }

  .pais-card {
    padding: 1.2rem;
  }

  .pais-card h4 {
    font-size: 1.5rem;
  }

  .pais-card p {
    font-size: 0.95rem;
  }
}


.pais-flag {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #4a50c9;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 1.2rem;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.15),
    0 4px 10px rgba(74,80,201,0.25);
}

.pais-flag .fi {
  font-size: 1.2rem;
  border-radius: 2px;
}




/* ── CLIENTES ── */
/* #clientes { background: var(--section-alt); overflow: hidden; }
.clientes-scroll-wrap {
  overflow: hidden; margin-top: 3rem;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.clientes-track {
  display: flex; gap: 0; align-items: stretch;
  animation: scrollLeft 35s linear infinite;
  width: max-content;
}
.clientes-track:hover { animation-play-state: paused; }
@keyframes scrollLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.client-tag {
  padding: 0.85rem 2rem;
  border-right: 1px solid var(--border);
  background: var(--white);
  font-size: 0.78rem; font-weight: 700;
  color: var(--text); letter-spacing: 0.06em;
  white-space: nowrap; flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}
.client-tag:hover { background: var(--orange); color: var(--white); } */


/* ─────────────────────────
   CLIENTES
───────────────────────── */

#clientes {
  padding: 120px 5%;
  /* background: #f5f5f5; */
  background: #fff;
}

#clientes .section-lead {
  max-width: 1100px;
  font-size: 1.08rem;
  line-height: 1.85;
  color: #333;
  margin-top: 2rem;
  margin-bottom: 5rem;
}

/* ── LOGOS ── */

.clientes-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
   gap: 1rem 0.5rem; 

  align-items: center;
  justify-items: center;

  margin-bottom: 5rem;
}

.clientes-logos img {
  max-width: 140px;
  max-height: 70px;

  width: auto;
  height: auto;

  object-fit: contain;

  /* filter: grayscale(100%);
  opacity: 0.9; */

  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    filter 0.25s ease;
}

.clientes-logos img:hover {
  /* filter: grayscale(0%);
  opacity: 1; */
  transform: scale(1.05);
}

/* ── TEXTO FINAL ── */

.clientes-footer {
  max-width: 1100px;

  font-size: 1.05rem;
  line-height: 1.9;

  color: #333;
}

.clientes-footer strong {
  font-weight: 700;
  color: #111;
}

/* ── RESPONSIVE ── */

@media (max-width: 1200px) {

  .clientes-logos {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {

  #clientes {
    padding: 90px 6%;
  }

  .clientes-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
  }

  .clientes-logos img {
    max-width: 110px;
    max-height: 55px;
  }

  .clientes-footer,
  #clientes .section-lead {
    font-size: 1rem;
    line-height: 1.75;
  }
}






/* ─────────────────────────
   PARTNERS
───────────────────────── */

#partners {
  padding: 120px 5%;
  background: #fff;
}

#partners .section-lead {
  margin-top: 2rem;
  margin-bottom: 4rem;

  font-size: 1.08rem;
  line-height: 1.8;

  color: #333;
}

/* ── GRID ── */

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

/* ── CARD ── */

.partner-card {
  background: #dfe1f2;

  border: 1px solid #5d67b4;
  border-radius: 8px;

  padding: 1.4rem;

  min-height: 205px;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.partner-card:hover {
  transform: translateY(-4px);

  box-shadow:
    0 14px 35px rgba(0,0,0,0.08);

  border-color: #4a50c9;
}

/* ── ICON ── */

.partner-icon {
  width: 44px;
  height: 44px;

  border-radius: 50%;
  background: #173b78;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 1.3rem;

  color: white;
}

.partner-icon svg {
  width: 21px;
  height: 21px;
}

/* ── TEXTOS ── */

.partner-card h4 {
  font-size: 1.9rem;
  line-height: 1.15;
  font-weight: 800;

  color: #2b2b2b;

  margin-bottom: 1rem;
}

.partner-card h4 span {
  font-size: 1.1rem;
}

.partner-card p {
  font-size: 1rem;
  line-height: 1.7;

  color: #3c3c3c;

  margin: 0;
}

/* ── RESPONSIVE ── */

@media (max-width: 1200px) {

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  #partners {
    padding: 90px 6%;
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }

  .partner-card {
    min-height: auto;
  }

  .partner-card h4 {
    font-size: 1.5rem;
  }

  .partner-card p,
  #partners .section-lead {
    font-size: 1rem;
  }
}











/* ── AUTOMATISMOS ── */
#automatismos {
  background: var(--white); 
  color: var(--white);
  position: relative; 
  overflow: hidden;
}
#automatismos::before {
  /* content: '';
  position: absolute; inset: 0;
   background: url('https://images.unsplash.com/photo-1563986768609-322da13575f3?w=1600&q=80&auto=format&fit=crop') center/cover no-repeat;
  opacity: 0.08; */
}
.auto-inner { position: relative; z-index: 1; }
.auto-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: start; margin-top: 3rem;
}
#automatismos .section-title { color: var(--black); }
#automatismos .section-eyebrow { color: var(--orange); }
.auto-text p {
  font-size: 0.9rem; line-height: 1.85; color: rgba(255,255,255,0.65);
  margin-bottom: 1.1rem;
}
.auto-text strong { color: var(--white); font-weight: 700; }
.auto-kpis {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5px;
  background: rgba(255,255,255,0.08);
}
.auto-kpi {
  background: rgba(255,255,255,0.04); padding: 2.5rem 2rem;
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.auto-kpi:hover { border-bottom-color: var(--orange); background: rgba(255,255,255,0.07); }
.auto-kpi-num {
  font-size: 3.5rem; font-weight: 900; line-height: 1;
  color: var(--orange); letter-spacing: -0.03em; margin-bottom: 0.4rem;
}
.auto-kpi h4 { font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; }
.auto-kpi p { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.55; }

/* ── IA ── */
#ia { background: var(--section-alt); }
.ia-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: start; margin-top: 1rem;
}
.ia-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1.5px solid var(--orange); color: var(--orange);
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 0.35rem 0.9rem;
  margin-bottom: 1.5rem;
}
.ia-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5px;
  background: var(--border); margin-top: 2.5rem;
}
.ia-feat {
  background: var(--white); padding: 1.5rem;
  transition: background 0.15s;
}
.ia-feat:last-child { grid-column: span 2; }
.ia-feat:hover { background: #FEFCFA; }
.ia-feat h4 {
  font-size: 0.88rem; font-weight: 800; color: var(--black);
  margin-bottom: 0.4rem; display: flex; align-items: center; gap: 0.5rem;
}
.ia-feat p { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }
/* terminal mockup */
.ia-mockup {
  background: var(--white);
  border: 1.5px solid var(--border);
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.ia-mockup-bar {
  background: #F0EDE8; border-bottom: 1px solid var(--border);
  padding: 0.7rem 1.2rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-r { background: #FF5F57; }
.dot-y { background: #FFBD2E; }
.dot-g { background: #28CA41; }
.ia-mockup-title {
  margin-left: 0.5rem; font-size: 0.7rem; color: var(--muted); font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.ia-mockup-body { padding: 1.5rem; }
.ia-msg-user {
  background: var(--section-alt); border: 1px solid var(--border);
  padding: 0.9rem 1.1rem; border-radius: 2px;
  font-size: 0.84rem; color: var(--text); margin-bottom: 1.2rem;
}
.ia-msg-label { font-size: 0.65rem; font-weight: 700; color: var(--orange); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.4rem; }
.ia-msg-ai {
  border-left: 3px solid var(--orange);
  padding: 1rem 1.2rem; background: var(--white);
}
.ia-bar-row { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.6rem; }
.ia-bar-label { font-size: 0.72rem; color: var(--muted); font-weight: 600; width: 70px; flex-shrink: 0; }
.ia-bar-bg { flex: 1; height: 5px; background: var(--section-alt); }
.ia-bar-fill { height: 100%; background: var(--orange); }
.ia-bar-pct { font-size: 0.72rem; color: var(--orange); font-weight: 700; width: 34px; text-align: right; }

/* ── METODOLOGÍA ── */
#metodologia { background: var(--white); }
.meto-row {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 1.5px;
  background: var(--border); margin-top: 3.5rem;
}
.meto-step {
  background: var(--white); padding: 2.5rem 1.8rem;
  position: relative; overflow: hidden;
  transition: background 0.2s;
}
.meto-step:hover { background: var(--section-alt); }
.meto-step::after {
  content: attr(data-label);
  position: absolute; bottom: -0.5rem; right: 1rem;
  font-size: 5rem; font-weight: 900; line-height: 1;
  color: rgba(0,0,0,0.04); pointer-events: none;
  letter-spacing: -0.04em;
}
.meto-step-num {
  font-size: 0.68rem; font-weight: 800; color: var(--orange);
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.5rem;
}
.meto-step-num::before { content: ''; display: inline-block; width: 18px; height: 2px; background: var(--orange); }
.meto-step h3 { font-size: 0.95rem; font-weight: 800; color: var(--black); margin-bottom: 0.6rem; }
.meto-step p { font-size: 0.78rem; color: var(--muted); line-height: 1.65; }

/* ── RECONOCIMIENTOS ── */
#reconocimientos { background: var(--section-alt); }
.premios-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5px;
  background: var(--border); margin-top: 3.5rem;
}
.premio-card {
  background: var(--white); padding: 2.2rem 2rem;
  transition: background 0.2s; position: relative;
}
.premio-card:hover { background: #FEFCFA; }
.premio-year {
  font-size: 0.68rem; font-weight: 800; color: var(--orange);
  letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.6rem;
}
.premio-card h4 {
  font-size: 0.9rem; font-weight: 800; color: var(--black);
  line-height: 1.3; margin-bottom: 0.6rem;
}
.premio-card p { font-size: 0.78rem; color: var(--muted); line-height: 1.65; }
.premio-highlight {
  background: var(--black) !important;
}
.premio-highlight .premio-year,
.premio-highlight h4,
.premio-highlight p { color: var(--white) !important; }
.premio-highlight .premio-year { color: var(--orange) !important; }





/* ─────────────────────────
   LIDERAZGO
───────────────────────── */

#liderazgo {
  background: var(--white);
  padding: 100px 5%;
}

/* grid principal: 2 columnas */
.lid-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: start;
  margin-top: 3.5rem;
}

/* ── CARD IZQUIERDA ── */
.lid-profile {
  background: #173b78;
  border-radius: 14px;
  overflow: hidden;
  color: var(--white);
}

/* header de la card */
.lid-profile-header {
  padding: 2rem 2rem 1.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.lid-profile-header h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.9rem;
}

.lid-profile-header p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
}

/* lista de certificaciones */
.lid-certs {
  padding: 0.4rem 0;
}

.lid-cert {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.15s;
}

.lid-cert:last-child {
  border-bottom: none;
}

.lid-cert:hover {
  background: rgba(255,255,255,0.05);
}

.lid-cert-arrow {
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.lid-cert h5 {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.lid-cert p {
  font-size: 0.79rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ── COLUMNA DERECHA ── */
.lid-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* foto */
.lid-photo {
  width: 100%;
  /* border-radius: 12px; */
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.lid-photo img {
  height: 100%;
  object-fit: contain;
  object-position: top left;
  display: block;
    border-radius: 12px;
}

/* texto debajo de la foto */
.lid-text p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1rem;
}

.lid-text p:last-child {
  margin-bottom: 0;
}

.lid-text strong {
  color: var(--black);
  font-weight: 700;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .lid-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  #liderazgo {
    padding: 80px 6%;
  }

  .lid-profile-header {
    padding: 1.8rem 1.5rem;
  }

  .lid-cert {
    padding: 1.1rem 1.5rem;
  }
}











/* ── PARTNERS ── */
#partners { background: #fff; }
.partners-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5px;
  /* background: var(--border);  */
  margin-top: 3.5rem;
}
.partner-card {
  background: var(--white); padding: 2rem 1.5rem;
  /* text-align: center;  */
  transition: background 0.2s;
}
.partner-card:hover { background: #FEFCFA; }
.partner-flag { font-size: 2rem; margin-bottom: 0.6rem; }
.partner-card h4 { font-size: 0.9rem; font-weight: 800; color: var(--black); margin-bottom: 0.3rem; }
.partner-card p { font-size: 0.75rem; color: var(--muted); line-height: 1.5; }



/* ── GRID ── */

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

/* ── CARD ── */

.partner-card {
  background: #dfe1f2;

  border: 1px solid #5f67be;
  border-radius: 8px;

  padding: 1.4rem;

  min-height: 170px;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.partner-card:hover {
  transform: translateY(-3px);

  box-shadow:
    0 10px 25px rgba(0,0,0,0.08);

  border-color: #4a50c9;
}

/* ── ICON ── */

.partner-icon {
  width: 48px;
  height: 48px;

  border-radius: 50%;
  background: #173b78;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 1.3rem;

  color: white;
}

.partner-icon svg {
  width: 22px;
  height: 22px;
}

/* ── TEXTOS ── */

.partner-card h4 {
  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 800;

  color: #222;

  margin-bottom: 0.7rem;
}

.partner-card h4 span {
  font-size: 0.95rem;
}

.partner-card p {
  font-size: 0.98rem;
  line-height: 1.55;

  color: #444;

  margin: 0;
}

/* ── RESPONSIVE ── */

@media (max-width: 1200px) {

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .partners-grid {
    grid-template-columns: 1fr;
  }

  .partner-card {
    min-height: auto;
  }
}








/* ─────────────────────────
   AUTOMATISMOS
───────────────────────── */

#automatismos {
  padding: 120px 5%;
  background: #fff;
}

/* ── GRID ── */

.automatismos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* ── TEXTOS ── */

.automatismos-text {
  margin-top: 2rem;
}

.automatismos-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #333;

  margin-bottom: 1.8rem;
}

.automatismos-text strong {
  color: #111;
  font-weight: 700;
}

/* ── IMAGEN ── */

.automatismos-image {
  position: relative;
}

.automatismos-image img {
  width: 100%;
  height: 100%;

  min-height: 720px;
  max-height: 820px;

  object-fit: cover;

  border-radius: 14px;

  box-shadow:
    0 20px 45px rgba(0,0,0,0.12);
}

/* ── STATS ── */

.automatismos-stats {
  margin-top: 3rem;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 3rem;
}

.auto-stat {
  text-align: center;
}

.auto-stat-num {
  font-size: 4rem;
  line-height: 1;

  font-weight: 900;

  color: #222;

  margin-bottom: 1rem;

  letter-spacing: -0.03em;
}

.auto-stat h4 {
  font-size: 1.4rem;
  font-weight: 800;

  color: #222;

  margin-bottom: 0.8rem;
}

.auto-stat p {
  font-size: 1rem;
  line-height: 1.7;

  color: #444;

  margin: 0 auto;
  max-width: 260px;
}

/* ── RESPONSIVE ── */

@media (max-width: 1200px) {

  .automatismos-grid {
    grid-template-columns: 1fr;
  }

  .automatismos-image img {
    min-height: 420px;
  }

  .automatismos-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  #automatismos {
    padding: 90px 6%;
  }

  .automatismos-grid {
    gap: 3rem;
  }

  .automatismos-text p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .automatismos-image img {
    min-height: 300px;
  }

  .automatismos-stats {
    grid-template-columns: 1fr;
    gap: 2.5rem;

    margin-top: 4rem;
  }

  .auto-stat-num {
    font-size: 3rem;
  }

  .auto-stat h4 {
    font-size: 1.2rem;
  }
}










/* ─────────────────────────
   CRECIMIENTO
───────────────────────── */

#crecimiento {
  background: var(--white);
  padding: 100px 5%;
}

.crec-intro {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
  max-width: 100%;
  margin-bottom: 2.5rem;
}

.crec-intro strong {
  color: var(--black);
  font-weight: 700;
}

/* grid 2x2 */
.crec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: #d7daf3;
  border: 1.5px solid #d7daf3;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2rem;
}

/* card */
.crec-card {
  background: #eef0fb;
  padding: 1.8rem 2rem;
  transition: background 0.2s;
}

.crec-card:hover {
  background: #e6e9f8;
}

.crec-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.7rem;
  line-height: 1.3;
}

.crec-card p {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.75;
}

/* quote */
.crec-quote-block {
  border-left: 4px solid #4a50c9;
  padding: 1rem 1.5rem;
  margin-bottom: 1.8rem;
}

.crec-quote-block blockquote {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text);
  font-style: normal;
  font-weight: 400;
}

/* banner CTA verde */
.crec-cta {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 8px;
  padding: 1.4rem 1.8rem;
}

.crec-cta svg {
  width: 22px;
  height: 22px;
  color: #2e7d32;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.crec-cta p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #1b5e20;
  font-weight: 500;
  margin: 0;
}

/* responsive */
@media (max-width: 768px) {
  #crecimiento {
    padding: 80px 6%;
  }

  .crec-grid {
    grid-template-columns: 1fr;
  }
}














/* ── CONTACTO ── */
#contacto {
  background: var(--black); color: var(--white);
  text-align: center; padding: 120px 5%;
  position: relative; overflow: hidden;
}
#contacto::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=1600&q=80&auto=format&fit=crop') center/cover no-repeat;
  opacity: 0.06;
}
.cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
#contacto .section-eyebrow { color: var(--orange); }
#contacto .section-title { color: var(--white); font-size: clamp(2.2rem, 5vw, 4rem); max-width: none; }
#contacto p { font-size: 0.95rem; color: rgba(255,255,255,0.5); margin: 1.5rem 0 2.5rem; line-height: 1.7; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange); color: var(--white);
  padding: 0.95rem 2.4rem; font-weight: 800;
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s;
  font-family: 'Montserrat', sans-serif;
}
.btn-primary:hover { background: var(--orange2); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.25); color: var(--white);
  padding: 0.95rem 2.4rem; font-weight: 700;
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; transition: border-color 0.2s;
  font-family: 'Montserrat', sans-serif;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.6); }

/* ── FOOTER ── */
footer {
  /* background: #0A0A0A;  */
  padding: 1.5rem 5%;
  /* border-top: 1px solid rgb(24, 24, 24); */
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: end;
  flex-wrap: wrap; gap: 1rem; max-width: 1180px; margin: 0 auto;
}
.footer-logo { font-size: 0.9rem; font-weight: 900; letter-spacing: 0.04em; }
.footer-logo .part-orange { color: var(--orange); }
.footer-logo .part-black { color: var(--grey); }
.footer-sub { font-size: 0.68rem; color: rgb(0, 0, 0); margin-top: 0.2rem; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-right { text-align: right; }
.footer-right a { color: rgb(0, 0, 0); font-size: 0.78rem; text-decoration: none; transition: color 0.2s; }
.footer-right a:hover { color: var(--orange); }
.footer-copy { font-size: 0.68rem; color: rgb(0, 0, 0); margin-top: 0.2rem; }
.footer-subtitle {
  font-size: 2rem;
  color: var(--muted); font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  margin-bottom: 1.8rem;
}
.footer-logo img{
    height: 70px;
}


/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── MOBILE ── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--white); padding: 1.5rem 5%;
    gap: 0.5rem; border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  }
  .nav-links.open a { font-size: 0.85rem; padding: 0.6rem 0; }
  .quienes-grid, .auto-grid, .ia-grid, .lid-grid { grid-template-columns: 1fr; gap: 3rem; }
  .esp-grid { grid-template-columns: 1fr; }
  .presencia-grid { grid-template-columns: repeat(2,1fr); }
  .meto-row { grid-template-columns: repeat(2,1fr); }
  .premios-grid { grid-template-columns: repeat(2,1fr); }
  .partners-grid { grid-template-columns: repeat(2,1fr); }
  .crec-grid { grid-template-columns: 1fr; }
  .hero-divider { display: none; }
  .hero-stats { gap: 2.5rem; }
  section { padding: 70px 5%; }
  .ia-features { grid-template-columns: 1fr; }
  .ia-feat:last-child { grid-column: span 1; }

  .footer-subtitle {
    font-size: 1rem;
  }
}
@media (max-width: 540px) {
  .presencia-grid { grid-template-columns: 1fr; }
  .premios-grid { grid-template-columns: 1fr; }
  .meto-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-right { text-align: left; }
}


/* ─────────────────────────
   RECONOCIMIENTOS TIMELINE
───────────────────────── */

#reconocimientos {
  background: var(--white);
  padding: 100px 5%;
}

#reconocimientos .section-lead {
  max-width: 820px;
  margin-bottom: 5rem;
}

.premios-timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

/* línea vertical central */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: #c5cae8;
  transform: translateX(-50%);
  z-index: 0;
}

/* cada fila: [card | dot | vacío] o [vacío | dot | card] */
.timeline-row {
  display: grid;
  grid-template-columns: 1fr 28px 1fr;
  align-items: center;
  gap: 0 2rem;
  margin-bottom: 2.2rem;
  position: relative;
  z-index: 1;
}

.timeline-empty { /* placeholder lado vacío */ }

/* dot */
.timeline-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #4a50c9;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px #4a50c9;
  justify-self: center;
  position: relative; z-index: 2;
}

.timeline-dot-highlight {
  background: var(--orange);
  box-shadow: 0 0 0 2px var(--orange);
  width: 18px; height: 18px;
}

/* card base */
.timeline-card {
  background: #eef0fb;
  border: 1px solid #d7daf3;
  border-left: 4px solid #4a50c9;
  border-radius: 10px;
  padding: 1.4rem 1.6rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.timeline-left {
  border-left: none;
  border-right: 4px solid #4a50c9;
  text-align: right;
}
.timeline-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(74,80,201,0.12);
}

.timeline-right { text-align: left; }

/* card destacada Gacela */
.timeline-card-highlight {
  background: var(--black);
  border-color: var(--orange);
  border-left-color: var(--orange);
}
.timeline-card-highlight .premio-year { color: var(--orange) !important; }
.timeline-card-highlight h4,
.timeline-card-highlight p { color: var(--white); }

/* año */
.premio-year {
  font-size: 0.68rem; font-weight: 800;
  color: #4a50c9; letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: 0.5rem;
}

/* título */
.timeline-card h4 {
  font-size: 0.9rem; font-weight: 800;
  color: var(--black); line-height: 1.35;
  margin-bottom: 0.5rem;
}

/* descripción */
.timeline-card p {
  font-size: 0.8rem; color: #555; line-height: 1.65;
}

/* ── RESPONSIVE TIMELINE ── */
@media (max-width: 680px) {
  .premios-timeline { padding-left: 1.8rem; }

  .timeline-line { left: 7px; }

  .timeline-row {
    grid-template-columns: 20px 1fr;
    gap: 0 1.2rem;
    margin-bottom: 1.6rem;
  }

  /* ocultar la columna vacía, siempre card a la derecha del dot */
  .timeline-empty { display: none; }

  /* cards que estaban a la izquierda: reordenar */
  .timeline-left {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
  }

  .timeline-row .timeline-dot { grid-column: 1; grid-row: 1; align-self: start; margin-top: 0.35rem; }
}










/* ─────────────────────────
   IA SECTION
───────────────────────── */

#ia {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;

  min-height: 100vh;

  background: var(--white);
}

/* ── IMAGE ── */

.ia-image {
  position: relative;
  overflow: hidden;
}

.ia-image img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
}

/* overlay */

.ia-image::after {
  content: '';

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.22),
      rgba(0,0,0,0.05)
    );
}

/* ── CONTENT ── */

.ia-content {
  padding:
    5rem
    5rem
    5rem
    4rem;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── BADGE ── */

.ia-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;

  width: fit-content;

  background: #dfe1f2;

  border-radius: 8px;

  padding:
    0.7rem
    1rem;

  margin-bottom: 2rem;

  color: #3b3b3b;

  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.ia-badge svg {
  width: 18px;
  height: 18px;

  color: #4a50c9;
}

/* ── TITLE ── */

.ia-title {
  font-size: clamp(3rem, 5vw, 5rem);

  line-height: 0.95;
  letter-spacing: -0.04em;

  font-weight: 900;

  color: #111;

  margin-bottom: 2rem;
}

/* ── DESC ── */

.ia-desc {
  max-width: 700px;

  font-size: 1.2rem;
  line-height: 1.8;

  color: #444;

  margin-bottom: 3rem;
}

/* ── GRID ── */

.ia-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 1rem;
}

/* ── CARD ── */

.ia-card {
  background: white;

  border: 1px solid #d7daf3;
  border-left: 6px solid #4a50c9;

  border-radius: 8px;

  padding: 1.4rem;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.ia-card:hover {
  transform: translateY(-3px);

  box-shadow:
    0 12px 25px rgba(0,0,0,0.06);
}

.ia-card h4 {
  font-size: 1.4rem;
  line-height: 1.2;

  font-weight: 800;

  color: #222;

  margin-bottom: 0.8rem;
}

.ia-card p {
  font-size: 1rem;
  line-height: 1.7;

  color: #444;

  margin: 0;
}

/* ── RESPONSIVE ── */

@media (max-width: 1200px) {

  #ia {
    grid-template-columns: 1fr;
  }

  .ia-image {
    height: 500px;
  }
}

@media (max-width: 768px) {

  .ia-content {
    padding: 4rem 6%;
  }

  .ia-title {
    font-size: 2.8rem;
  }

  .ia-desc {
    font-size: 1rem;
    line-height: 1.75;
  }

  .ia-grid {
    grid-template-columns: 1fr;
  }

  .ia-card h4 {
    font-size: 1.3rem;
  }

  .ia-image {
    height: 340px;
  }
}













/* ─────────────────────────
   METODOLOGÍA
───────────────────────── */

#metodologia {
  padding: 120px 5%;
  background: #fff;
}

/* LEAD */

.metodologia-lead {
  max-width: 1100px;
  margin-bottom: 5rem;
}

/* FLOW */

.metodologia-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;

  margin-bottom: 5rem;

  flex-wrap: nowrap;
}

/* STEP */

.metodo-step {
  display: flex;
  flex-direction: column;
  align-items: center;

  width: 220px;

  position: relative;
}

/* CIRCLE */

.metodo-circle {
  width: 160px;
  height: 160px;

  border-radius: 50%;

  border: 10px solid #4a50c9;

  background: white;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  z-index: 2;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.metodo-circle:hover {
  transform: translateY(-6px);

  box-shadow:
    0 20px 40px rgba(74,80,201,0.18);
}

/* ICON */

.metodo-circle svg {
  width: 48px;
  height: 48px;

  color: #2f2f2f;
}

/* TITLE */

.metodo-step h4 {
  margin-top: 2rem;

  font-size: 1.8rem;
  font-weight: 800;

  color: #222;

  text-align: center;
}

/* ARROW */

.metodo-arrow {
  width: 60px;
  height: 160px;

  position: relative;

  margin-left: -20px;
  margin-right: -20px;
}

.metodo-arrow::before {
  content: '';

  position: absolute;
  top: 50%;
  left: 50%;

  transform:
    translate(-50%, -50%);

  width: 0;
  height: 0;

  border-top: 28px solid transparent;
  border-bottom: 28px solid transparent;
  border-left: 34px solid #4a50c9;
}

/* FOOTER */

.metodologia-footer {
  max-width: 1200px;

  margin: 0 auto;

  font-size: 1.15rem;
  line-height: 1.9;

  color: #333;
}

/* RESPONSIVE */

@media (max-width: 1200px) {

  .metodologia-flow {
    flex-wrap: wrap;
    gap: 3rem 1rem;
  }

  .metodo-arrow {
    display: none;
  }
}

@media (max-width: 768px) {

  #metodologia {
    padding: 90px 6%;
  }

  .metodo-step {
    width: 100%;
  }

  .metodo-circle {
    width: 130px;
    height: 130px;

    border-width: 8px;
  }

  .metodo-circle svg {
    width: 40px;
    height: 40px;
  }

  .metodo-step h4 {
    font-size: 1.3rem;
    margin-top: 1.4rem;
  }

  .metodologia-footer {
    font-size: 1rem;
    line-height: 1.8;
  }
}







/* ── CONTACTO ── */
#contactos {
  background: #f5f5f5;
  padding: 80px 20px;
}

.contacto-inner {
  max-width: 820px;
  margin: 0 auto;
}

.contacto-title {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.t-orange  { color: #e8620a; }
.t-black   { color: #1a1a1a; }

.contacto-desc {
  color: #555;
  margin-bottom: 40px;
  font-size: 1rem;
}

.contacto-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  background: #fff;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e8620a;
}

.form-group textarea {
  resize: vertical;
}

.btn-enviar {
  align-self: flex-start;
  background: #e8620a;
  color: #fff;
  border: none;
  padding: 14px 40px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.1s;
}

.btn-enviar:hover  { background: #c9530a; }
.btn-enviar:active { transform: scale(0.98); }

/* Responsive */
@media (max-width: 600px) {
  .form-row { flex-direction: column; }
  .btn-enviar { width: 100%; text-align: center; }
}


.contacto-inner {
  position: relative;
  z-index: 2;
}