/* ====================================================
   GREEN DOT — International Legal Consulting
   Stylesheet principal
   ==================================================== */

/* ====== RESET ====== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #1a2a22; background: #fff; overflow-x: clip; }

/* ====== VARIABLES ====== */
:root {
  --dark:          #080f0b;
  --dark2:         #0d1810;
  --green:         #2d6756;
  --green-bright:  #3ecf82;
  --green-fill:    #2d6756;
  --green-light:   #eaf5ee;
  --green-xlight:  #f4faf6;
  --white:         #fafffe;
  --g100:          #f3f7f4;
  --g300:          #c5d8cc;
  --g500:          #7a9a88;
  --g700:          #4a6558;
  --text:          #1a2a22;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.1;
  letter-spacing: -.02em;
}

/* ====== NAVBAR ====== */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 22px 52px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all .4s ease;
}
#nav.scrolled {
  background: rgba(8,15,11,.96);
  backdrop-filter: blur(14px);
  padding: 14px 52px;
  border-bottom: 1px solid rgba(62,207,130,.12);
}
#nav.light {
  background: rgba(250,255,254,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(43,122,80,.1);
}
#nav.light .nav-links a,
#nav.light .lang-btn { color: var(--text); }
#nav.light .lang-btn.active { color: var(--green); }

.nav-logo { height: 42px; opacity: 0; transition: opacity .4s, filter .4s; }
/* Por defecto el nav es oscuro → forzamos el logo a blanco */
#nav.scrolled .nav-logo { opacity: 1; filter: brightness(0) invert(1); }
/* Sobre fondos claros mantenemos el verde original */
#nav.light .nav-logo { opacity: 1; filter: none; }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.8); text-decoration: none;
  font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--green-bright); }

.lang-sw { display: flex; gap: 2px; align-items: center; }
.lang-btn {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.5); font-size: 11px; font-weight: 700;
  letter-spacing: .08em; padding: 5px 9px; border-radius: 4px;
  transition: color .2s;
}
.lang-btn.active { color: var(--green-bright); }
.lang-btn:hover  { color: var(--green-bright); }
.lang-sep { color: rgba(255,255,255,.2); font-size: 10px; }

/* ====== HERO / SCROLL ANIMATION ====== */
#hero { height: 500vh; position: relative; background: var(--dark); }

#hero-sticky {
  position: sticky; top: 0; height: 100vh;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

/* Grid tecnológico de fondo */
#hero-sticky::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(43,122,80,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43,122,80,.07) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

/* Glow radial central */
#hero-sticky::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(43,122,80,.18) 0%, transparent 60%);
  pointer-events: none;
}

#hero-logo {
  width: min(460px, 70vw); height: auto;
  position: relative; z-index: 2;
  transform-origin: center center;
  filter: drop-shadow(0 0 100px rgba(45,103,86,.5));
}

#green-fill {
  position: absolute; inset: 0;
  background: #2d6756;
  opacity: 0; z-index: 3; pointer-events: none;
}

#hero-hint {
  position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 4;
}
.hint-text {
  color: rgba(255,255,255,.4); font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase;
}
.hint-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(62,207,130,.7), transparent);
  animation: pulse-line 1.6s ease-in-out infinite;
}
@keyframes pulse-line {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: .3; transform: scaleY(.5); }
}

#hero-sub {
  position: absolute; bottom: 116px; left: 50%; transform: translateX(-50%);
  z-index: 4; text-align: center; white-space: nowrap;
}
#hero-sub p {
  color: rgba(255,255,255,.45); font-size: 13px;
  letter-spacing: .18em; text-transform: uppercase;
}

/* ====== SECCIONES GENERALES ====== */
.sec { padding: 120px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 52px; }

.sec-label {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--green); margin-bottom: 14px;
  position: relative; padding-left: 22px;
}
.sec-label::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 12px; height: 2px; background: var(--green);
}

.sec-title {
  font-size: clamp(34px, 5vw, 62px); font-weight: 900; color: var(--text);
  line-height: 1.05; margin-bottom: 20px;
}
.sec-title span { color: var(--green); }
.sec-sub { font-size: 17px; color: var(--g500); line-height: 1.75; max-width: 580px; }

/* ====== INTRO ====== */
#intro {
  background: var(--dark); padding: 100px 0;
  overflow: hidden; position: relative;
}
#intro::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(43,122,80,.18) 0%, transparent 55%);
  pointer-events: none;
}

.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.intro-hl {
  font-size: clamp(40px, 6vw, 78px); font-weight: 900;
  color: var(--white); line-height: 1.0;
}
.intro-hl em { font-style: normal; color: var(--green-bright); }

.intro-body { color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.85; }
.intro-body + .intro-body { margin-top: 14px; }

/* Botón principal */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green); color: #fff; text-decoration: none;
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 15px 30px; border-radius: 3px; margin-top: 30px;
  border: 2px solid var(--green); transition: all .25s;
}
.btn:hover { background: transparent; color: var(--green-bright); border-color: var(--green-bright); }
.btn svg { transition: transform .25s; }
.btn:hover svg { transform: translateX(4px); }

/* Stats bar */
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,.1); margin-top: 64px;
}
.stat { background: rgba(255,255,255,.03); padding: 30px; text-align: center; }
.stat-n {
  font-family: 'Montserrat', sans-serif; font-size: 46px; font-weight: 900;
  color: var(--green-bright); line-height: 1;
}
.stat-l {
  font-size: 11px; color: rgba(255,255,255,.45);
  letter-spacing: .14em; text-transform: uppercase; margin-top: 6px;
}

/* ====== NOSOTROS ====== */
#nosotros { background: var(--white); }

.mv {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: var(--g300); margin-top: 60px;
}
.mv-card { background: var(--white); padding: 52px; }
.mv-card h3 {
  font-size: 11px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--green); margin-bottom: 18px;
}
.mv-card p { font-size: 19px; font-weight: 300; color: var(--text); line-height: 1.65; }

.about-g {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-top: 80px;
}
.about-img-box {
  width: 100%; height: 460px;
  background: linear-gradient(135deg, var(--green-fill), var(--green));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.about-img-box::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,.03) 0px, rgba(255,255,255,.03) 1px,
    transparent 1px, transparent 44px
  );
}
.about-img-box img {
  width: 55%; opacity: .2;
  filter: brightness(0) invert(1);
  position: relative; z-index: 1;
}
.about-txt { display: flex; flex-direction: column; gap: 18px; }
.about-txt p { font-size: 15px; line-height: 1.85; color: var(--g700); }
.about-txt strong { color: var(--text); }

/* ====== RUBROS ====== */
#rubros { background: var(--dark); }
#rubros .sec-title { color: var(--white); }
#rubros .sec-label { color: var(--green-bright); }
#rubros .sec-label::before { background: var(--green-bright); }

.rubros-g {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,.07); margin-top: 52px;
}
.rubro {
  background: var(--dark2); padding: 36px 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background .3s; cursor: default;
}
.rubro:hover { background: var(--green-fill); }
.rubro-ic { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; }
.rubro-ic svg { width: 28px; height: 28px; stroke: var(--green-bright); fill: none; stroke-width: 1.5; }
.rubro-name { font-size: 13px; font-weight: 600; color: var(--white); letter-spacing: .02em; }

/* ====== SERVICIOS ====== */
#servicios { background: var(--green-xlight); }

.svcs-g {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; background: var(--g300); margin-top: 60px;
}
.svc {
  background: var(--white); padding: 52px;
  position: relative; overflow: hidden; transition: background .3s;
}
.svc::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--green); transform: scaleY(0); transform-origin: top;
  transition: transform .4s ease;
}
.svc:hover::before { transform: scaleY(1); }
.svc:hover { background: var(--green-xlight); }

.svc-num {
  font-family: 'Montserrat', sans-serif; font-size: 62px; font-weight: 900;
  color: var(--green-light); line-height: 1; margin-bottom: 18px;
}
.svc-title { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 18px; line-height: 1.3; }
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.svc-list li {
  font-size: 13px; color: var(--g700); line-height: 1.55;
  padding-left: 18px; position: relative;
}
.svc-list li::before { content: '→'; position: absolute; left: 0; color: var(--green); font-size: 11px; top: 1px; }

/* ====== LÍDERES ====== */
#lideres { background: var(--white); }

.lideres-g { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 60px; }
.lider { display: flex; flex-direction: column; }
.lider-photo {
  width: 100%; aspect-ratio: 1;
  background:
    radial-gradient(circle at 30% 25%, rgba(62,207,130,.55) 0%, transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(8,15,11,.55) 0%, transparent 60%),
    linear-gradient(135deg, #2d6756 0%, #1a3d30 55%, #081811 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; overflow: hidden; position: relative;
  border: 1px solid rgba(62,207,130,.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    inset 0 -30px 60px rgba(0,0,0,.35),
    0 10px 30px rgba(8,24,17,.18);
  transition: transform .4s ease, box-shadow .4s ease;
}
.lider-photo::before {
  /* Patrón sutil de grid tecnológico */
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(62,207,130,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62,207,130,.06) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.lider-photo::after {
  /* Halo luminoso */
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(62,207,130,.22) 0%, transparent 50%);
  pointer-events: none;
}
.lider:hover .lider-photo {
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    inset 0 -30px 60px rgba(0,0,0,.35),
    0 18px 40px rgba(8,24,17,.28);
}
.lider-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  position: absolute; inset: 0;
}
.lider-initials {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 900;
  letter-spacing: .02em;
  color: #fff;
  position: relative; z-index: 1;
  text-shadow: 0 2px 30px rgba(62,207,130,.4), 0 1px 0 rgba(0,0,0,.3);
  background: linear-gradient(180deg, #ffffff 0%, #c8f0d8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lider-name { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.lider-role {
  font-size: 11px; font-weight: 600; color: var(--green);
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 10px;
}
.lider-bio { font-size: 12px; color: var(--g700); line-height: 1.72; flex: 1; }
.lider-mail {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; color: var(--green); font-size: 11px;
  text-decoration: none; font-weight: 500;
}
.lider-mail:hover { color: var(--green-bright); }

/* ====== PREMIOS ====== */
#premios { background: var(--dark); overflow: hidden; position: relative; }
#premios::before {
  content: ''; position: absolute; top: -180px; right: -180px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(62,207,130,.1) 0%, transparent 70%);
  pointer-events: none;
}
#premios .sec-title { color: var(--white); }
#premios .sec-label { color: var(--green-bright); }
#premios .sec-label::before { background: var(--green-bright); }
#premios .sec-sub { color: rgba(255,255,255,.55); }

.premios-g {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; background: rgba(255,255,255,.07); margin-top: 60px;
}
.p-cat { background: var(--dark2); padding: 52px; }
.p-cat-title {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-bright); margin-bottom: 22px;
  display: flex; align-items: center; gap: 10px;
}
.p-cat-title svg { width: 18px; height: 18px; fill: var(--green-bright); }

.p-items { display: flex; flex-direction: column; gap: 12px; }
.p-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px; background: rgba(255,255,255,.04);
  border-left: 2px solid var(--green);
}
.p-rank {
  font-family: 'Montserrat', sans-serif; font-size: 26px; font-weight: 900;
  color: var(--green-bright); line-height: 1; min-width: 28px;
}
.p-desc { font-size: 13px; color: rgba(255,255,255,.75); line-height: 1.5; }
.p-year { font-size: 11px; color: rgba(255,255,255,.35); margin-top: 3px; }

/* ====== ALCANCE ====== */
#alcance { background: var(--green-light); padding: 80px 0; }
.alcance-t {
  text-align: center; font-size: 11px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--green); margin-bottom: 20px;
}
/* Globe */
.globe-wrap {
  position: relative; width: min(520px, 90vw);
  aspect-ratio: 1 / 1; margin: 0 auto 48px;
  cursor: grab;
}
.globe-wrap:active { cursor: grabbing; }
#globe-canvas {
  width: 100%; height: 100%;
  display: block; border-radius: 50%;
}
.flags { display: flex; justify-content: center; align-items: center; gap: 52px; flex-wrap: wrap; }
.flag { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.flag-e { font-size: 46px; line-height: 1; }
.flag-n { font-size: 11px; font-weight: 600; color: var(--green); letter-spacing: .08em; text-transform: uppercase; }

/* ====== CTA BANNER ====== */
#cta { background: var(--green); padding: 80px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-txt h2 { font-size: clamp(26px, 4vw, 46px); font-weight: 900; color: #fff; line-height: 1.1; }
.cta-txt p  { font-size: 15px; color: rgba(255,255,255,.72); margin-top: 8px; }

.btn-w {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--green); text-decoration: none;
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 17px 34px; border-radius: 3px; white-space: nowrap; flex-shrink: 0;
  transition: all .25s;
}
.btn-w:hover { background: var(--dark); color: #fff; }

/* ====== CONTACTO ====== */
#contacto { background: var(--white); }
.ctc-g { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 60px; }
.ctc-info { display: flex; flex-direction: column; gap: 28px; }
.ctc-item { display: flex; gap: 18px; align-items: flex-start; }

.ctc-ic {
  width: 42px; height: 42px; background: var(--green-light); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ctc-ic svg { width: 18px; height: 18px; stroke: var(--green); fill: none; stroke-width: 2; }

.ctc-det h4 {
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--g500); margin-bottom: 5px;
}
.ctc-det p,
.ctc-det a { font-size: 13px; color: var(--text); line-height: 1.65; text-decoration: none; display: block; }
.ctc-det a:hover { color: var(--green); }

.ctc-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.fg { display: flex; flex-direction: column; gap: 5px; }
.fg label {
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--g500);
}
.fg input,
.fg textarea {
  padding: 13px 15px; border: 1.5px solid var(--g300); border-radius: 3px;
  font-family: 'Inter', sans-serif; font-size: 13px; color: var(--text);
  background: var(--white); transition: border-color .2s; outline: none; resize: none;
}
.fg input:focus,
.fg textarea:focus { border-color: var(--green); }
.fg textarea { height: 116px; }

.btn-sub {
  position: relative;
  background: var(--green); color: #fff; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 15px 30px; border-radius: 3px; align-self: flex-start;
  min-width: 180px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: all .25s;
}
.btn-sub:hover:not(:disabled) { background: var(--green-fill); transform: translateY(-1px); }
.btn-sub:disabled { cursor: default; opacity: .85; }
.btn-sub.is-success { background: #3ecf82; }
.btn-sub.is-error   { background: #c94a4a; }

.btn-spinner {
  display: none;
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
.btn-sub.is-loading .btn-spinner { display: inline-block; }
.btn-sub.is-loading { pointer-events: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-status {
  min-height: 18px;
  margin-top: 10px;
  font-size: 12px;
  color: var(--g500);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .3s, transform .3s;
}
.form-status.show { opacity: 1; transform: translateY(0); }
.form-status.success { color: var(--green); }
.form-status.error   { color: #c94a4a; }

/* ====== GLOBO — LABELS HTML ====== */
#globe-labels {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 2;
}
.globe-label {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; gap: 6px;
  padding: 4px 9px;
  background: rgba(8, 15, 11, .88);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(62, 207, 130, .35);
  border-radius: 20px;
  font-size: 10px; font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #eaf5ee;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .35s ease;
  box-shadow: 0 4px 18px rgba(8, 15, 11, .35);
}
.globe-label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #3ecf82;
  box-shadow: 0 0 10px rgba(62, 207, 130, .8);
}
.globe-label.visible { opacity: 1; }

/* ====== FOOTER ====== */
footer { background: var(--dark); padding: 60px 0 28px; }
.footer-top {
  display: grid; grid-template-columns: 1fr 2fr; gap: 80px;
  padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo { height: 44px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-tag { font-size: 12px; color: rgba(255,255,255,.35); line-height: 1.65; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-col h4 {
  font-size: 10px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 14px;
}
.footer-col a {
  display: block; font-size: 12px; color: rgba(255,255,255,.65);
  text-decoration: none; margin-bottom: 9px; transition: color .2s;
}
.footer-col a:hover { color: var(--green-bright); }
.footer-col p { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.65; margin-bottom: 7px; }
.footer-bot {
  display: flex; justify-content: space-between; align-items: center; padding-top: 22px;
}
.footer-copy,
.footer-countries { font-size: 11px; color: rgba(255,255,255,.25); }

/* ====== WHATSAPP FLOTANTE ====== */
#wa {
  position: fixed; bottom: 28px; right: 28px;
  width: 54px; height: 54px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4); z-index: 999;
  text-decoration: none; transition: all .3s;
}
#wa:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.5); }
#wa svg { width: 28px; height: 28px; fill: #fff; }

/* ====== ANIMACIONES DE ENTRADA (scroll reveal) ====== */
.rv {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.rv.on { opacity: 1; transform: translateY(0); }
.rv1 { transition-delay: .1s; }
.rv2 { transition-delay: .2s; }
.rv3 { transition-delay: .3s; }
.rv4 { transition-delay: .4s; }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .container  { padding: 0 32px; }
  .lideres-g  { grid-template-columns: repeat(2, 1fr); }
  .rubros-g   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links    { display: none; }
  #nav          { padding: 16px 24px; }
  #nav.scrolled { padding: 12px 24px; }

  .intro-grid,
  .about-g,
  .ctc-g,
  .mv           { grid-template-columns: 1fr; }

  .svcs-g,
  .premios-g    { grid-template-columns: 1fr; }
  .stats        { grid-template-columns: 1fr; }
  .footer-top   { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bot   { flex-direction: column; gap: 6px; text-align: center; }
  .cta-inner    { flex-direction: column; text-align: center; }
  .form-row     { grid-template-columns: 1fr; }
  .sec          { padding: 80px 0; }
}

@media (max-width: 480px) {
  .lideres-g { grid-template-columns: 1fr; }
  .rubros-g  { grid-template-columns: 1fr; }
}
