/* ============================================================
   CAPTOR CAPITAL — Main Stylesheet
   Extraído y adaptado del diseño aprobado (index.html)
   ============================================================ */

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --mid: #181818;
  --card: #151515;
  --surface: #f5f2ee;
  --white: #ffffff;
  --gold: #C4973A;
  --gold-lt: #D4AF5A;
  --gold-dim: rgba(196, 151, 58, 0.15);
  --muted: rgba(255, 255, 255, 0.45);
  --border: rgba(255, 255, 255, 0.07);
  --font-d: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'Barlow', sans-serif;
  --font-c: 'Barlow Condensed', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-b);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
  line-height: 1.75;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── LANG ── */
[data-lang="es"] [data-en] {
  display: none !important;
}

[data-lang="en"] [data-es] {
  display: none !important;
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #000000;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.4s;
}

.hdr {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo-wrap img {
  height: 47px;
  width: auto;
  filter: brightness(1);
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

nav.main-nav a {
  font-family: var(--font-c);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

nav.main-nav a:hover {
  color: var(--gold-lt);
}

.lang-sw {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.lang-btn {
  padding: 6px 13px;
  font-family: var(--font-c);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.35);
  transition: all 0.2s;
}

.lang-btn.active {
  background: var(--gold);
  color: var(--black);
}

/* Hamburger */
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.ham span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all .3s;
}

.ham.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.ham.open span:nth-child(2) {
  opacity: 0;
}

.ham.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav overlay */
.mob-nav {
  display: flex;          /* siempre flex — se oculta con visibility+opacity */
  visibility: hidden;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 44px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, visibility .3s;
}

@media (max-width: 768px) {
  .mob-nav {
    align-items: flex-start;
    justify-content: flex-start;
    padding: 40px 32px;
    gap: 36px;
  }

  .mob-nav .lang-sw {
    order: -1;
    margin-top: 0;
    margin-bottom: 8px;
  }
}

.mob-nav.open {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}

.mob-nav a {
  font-family: var(--font-c);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  transition: color .2s;
}

.mob-nav a:hover {
  color: var(--gold-lt);
}

.mob-nav .lang-sw {
  margin-top: 8px;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: #191919;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  position: relative;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 151, 58, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 151, 58, .035) 1px, transparent 1px);
  background-size: 90px 90px;
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  top: -10%;
  right: 0;
  width: 65vw;
  height: 110vh;
  background: radial-gradient(ellipse at 80% 40%,
      rgba(196, 151, 58, .09) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  position: relative;
  z-index: 1;
  gap: 0;
  padding-top: 76px;
}

.hero-left {
  padding: 80px 0;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-c);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.hero-h1 {
  font-family: var(--font-d);
  font-size: clamp(56px, 6.5vw, 96px);
  font-weight: 300;
  line-height: 1.03;
  letter-spacing: -.01em;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold-lt);
}

.hero-sub {
  font-family: var(--font-c);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 52px;
  line-height: 2;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  font-family: var(--font-c);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all .3s var(--ease);
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: translateY(-2px);
}

.hero-right {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-right::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: -10%;
  height: 75%;
  background: radial-gradient(ellipse at 50% 100%,
      rgba(196, 151, 58, .12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-person-main {
  position: absolute;
  bottom: 180px;
  right: 5%;
  height: 48vh;
  max-height: 392px;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .9));
  animation: float 7s ease-in-out infinite;
}

.hero-person-secondary {
  position: absolute;
  bottom: 100px;
  left: 0%;
  height: 68vh;
  max-height: 560px;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .7));
  animation: float 7s ease-in-out infinite 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat {
  padding: 40px 48px;
  border-right: 1px solid var(--border);
}

.stat:last-child {
  border-right: none;
}

.stat-n {
  font-family: var(--font-d);
  font-size: 56px;
  font-weight: 300;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-l {
  font-family: var(--font-c);
  font-size: 16px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  line-height: 1.5;
}

/* ── SHARED SECTION STYLES ── */
.sec {
  position: relative;
}

.wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 110px 48px;
}

.sec-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-c);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.sec-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.sec-h2 {
  font-family: var(--font-d);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 36px;
}

.sec-h2.dk {
  color: var(--black);
}

/* ── QUIÉNES SOMOS ── */
#quienes {
  background: var(--surface);
  color: var(--black);
}

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

.quien-text p {
  font-size: 17px;
  line-height: 1.85;
  color: #2c2c2c;
  margin-bottom: 22px;
}

.quien-img {
  position: relative;
}

.quien-img img {
  width: 70%;
  height: auto;
  object-fit: contain;
  object-position: center;
  margin-top: 100px;
  margin-left: 100px;
  display: block;
  position: relative;
  z-index: 1;
}

.quien-img::after {
  content: '';
  position: absolute;
  top: 100px;
  left: 60px;
  width: 70%;
  height: calc(100% - 100px);
  border: 2px solid var(--gold);
  pointer-events: none;
  z-index: 0;
}

/* ── ÁREAS DE NEGOCIO ── */
#areas {
  background: var(--dark);
}

.areas-hdr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
  align-items: end;
}

.areas-intro {
  font-size: 21px;
  line-height: 1.85;
  color: var(--muted);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.area-card {
  background: var(--card);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: background .35s var(--ease), transform .35s var(--ease);
  border-top: 2px solid transparent;
}

.area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}

.area-card:hover::before {
  transform: scaleX(1);
}

.area-card:hover {
  background: #1d1d1d;
  transform: translateY(-5px);
}

.area-n {
  font-family: var(--font-d);
  font-size: 80px;
  font-weight: 300;
  color: rgba(196, 151, 58, .1);
  line-height: 1;
  margin-bottom: 24px;
  transition: color .3s;
}

.area-card:hover .area-n {
  color: rgba(196, 151, 58, .18);
}

.area-name {
  font-family: var(--font-c);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.area-desc {
  font-size: 19px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 28px;
}

.area-div {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 24px;
}

.area-ul {
  list-style: none;
}

.area-ul li {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .45);
  padding: 7px 0 7px 18px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.area-ul li:last-child {
  border-bottom: none;
}

.area-ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
}

/* ── METODOLOGÍA ── */
#metodologia {
  background: var(--black);
}

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

.meto-text p {
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 22px;
}

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 44px;
}

.pillar {
  background: var(--mid);
  padding: 30px 26px;
  border-left: 2px solid var(--gold);
}

.pillar-n {
  font-family: var(--font-d);
  font-size: 32px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 10px;
}

.pillar-t {
  font-family: var(--font-c);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.5;
}

.meto-visual {
  position: relative;
}

.meto-visual img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.meto-badge {
  position: absolute;
  bottom: 36px;
  left: -36px;
  background: var(--gold);
  color: var(--black);
  padding: 30px 36px;
  max-width: 300px;
}

.meto-badge p {
  font-family: var(--font-d);
  font-size: 19px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  color: var(--black);
}

/* ── CONTACTO ── */
#contacto {
  background: var(--mid);
}

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

.contact-text p {
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 20px;
}

.contact-sign {
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.contact-brand {
  font-family: var(--font-c);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-tag {
  font-family: var(--font-d);
  font-size: 22px;
  font-style: italic;
  color: var(--gold-lt);
}

.cform {
  background: var(--dark);
  padding: 52px 48px;
}

/* ── Frow / Fg genéricos (fallback y CF7) ── */
.cform .frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.cform .fg {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.cform .fg label {
  font-family: var(--font-c);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
}

.cform input[type="text"],
.cform input[type="email"],
.cform input[type="tel"],
.cform textarea {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  color: var(--white);
  font-family: var(--font-b);
  font-size: 15px;
  padding: 15px 18px;
  outline: none;
  transition: border-color .2s;
  width: 100%;
  resize: none;
  border-radius: 0;
  -webkit-appearance: none;
}

.cform input[type="text"]:focus,
.cform input[type="email"]:focus,
.cform input[type="tel"]:focus,
.cform textarea:focus {
  border-color: var(--gold);
}

.cform input::placeholder,
.cform textarea::placeholder {
  color: rgba(255, 255, 255, .18);
}

/* Botón submit genérico */
.fsub {
  width: 100%;
  padding: 17px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-c);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: 1px solid var(--white);
  cursor: pointer;
  transition: all .3s;
  margin-top: 8px;
  display: block;
}

.fsub:hover {
  background: var(--gold-lt);
  color: var(--black);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
}

/* Checkbox + label en línea */
.cform .fg-check {
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.cform .fg-check input[type="checkbox"] {
  width: 17px;
  height: 17px;
  min-width: 17px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}

.cform .fg-check label {
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: none;
  color: rgba(255, 255, 255, .45);
  cursor: pointer;
}

/* ── CF7 — Reset wrapper ── */
.cform .wpcf7 {
  margin: 0;
  padding: 0;
  border: none;
}

/* Oculta todos los elementos estructurales que CF7 inserta y generan líneas */
.cform .wpcf7 .screen-reader-response,
.cform .wpcf7-form fieldset,
.cform .wpcf7-form fieldset *,
.cform .hidden-fields-container,
.cform .wpcf7-form > p:empty,
.cform .wpcf7-form > hr {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  visibility: hidden !important;
}

/* ── CF7 Form Styling ── */
.cform .wpcf7-form .frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

/* Labels del formulario (los nuestros data-es / data-en) */
.cform .fg > label,
.cform .fg > span[data-es],
.cform .fg > span[data-en] {
  font-family: var(--font-c);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  display: block;
}

/* Oculta el label interno que CF7 genera dentro de [acceptance] */
.cform .wpcf7-acceptance label {
  display: none;
}

/* Inputs y textarea */
.cform .wpcf7-form input[type="text"],
.cform .wpcf7-form input[type="email"],
.cform .wpcf7-form input[type="tel"],
.cform .wpcf7-form textarea {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  color: var(--white);
  font-family: var(--font-b);
  font-size: 15px;
  padding: 15px 18px;
  outline: none;
  transition: border-color .2s;
  width: 100%;
  resize: none;
  border-radius: 0;
  -webkit-appearance: none;
  box-shadow: none;
}

.cform .wpcf7-form input[type="text"]:focus,
.cform .wpcf7-form input[type="email"]:focus,
.cform .wpcf7-form input[type="tel"]:focus,
.cform .wpcf7-form textarea:focus {
  border-color: var(--gold);
}

.cform .wpcf7-form input::placeholder,
.cform .wpcf7-form textarea::placeholder {
  color: rgba(255, 255, 255, .18);
}

/* Botón submit */
.cform .wpcf7-form input[type="submit"] {
  width: 100%;
  padding: 17px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-c);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: 1px solid var(--white);
  cursor: pointer;
  transition: all .3s;
  margin-top: 8px;
  border-radius: 0;
  -webkit-appearance: none;
  display: block;
}

.cform .wpcf7-form input[type="submit"]:hover {
  background: var(--gold-lt);
  color: var(--black);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
}

/* ── Checkbox + autorización ── */

.cform .fg-check {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 12px !important;
  margin-top: 4px;
  margin-bottom: 16px;
}

/* <p> intermedio que CF7 inserta — también en fila */
.cform .fg-check > p {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 12px !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
}

/* Oculta <br> residuales */
.cform .fg-check br {
  display: none !important;
}

/* Spans del acceptance sin caja extra */
.cform .fg-check .wpcf7-form-control-wrap,
.cform .fg-check .wpcf7-acceptance,
.cform .fg-check .wpcf7-list-item {
  display: inline-flex !important;
  align-items: center !important;
  flex-shrink: 0 !important;
  line-height: 1;
}

/* Checkbox */
.cform .fg-check input[type="checkbox"] {
  width: 17px !important;
  height: 17px !important;
  min-width: 17px !important;
  accent-color: var(--gold);
  cursor: pointer;
  margin: 0 !important;
  flex-shrink: 0;
}

/* Texto "Autorizo..." — Barlow Condensed, igual que labels del form */
.cform .fg-check span[data-es],
.cform .fg-check span[data-en],
.cform .fg-check > p > span[data-es],
.cform .fg-check > p > span[data-en] {
  font-family: var(--font-c) !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  letter-spacing: .06em !important;
  text-transform: none !important;
  color: rgba(255, 255, 255, .45) !important;
  line-height: 1.4;
  cursor: pointer;
}

.wpcf7-not-valid-tip {
  color: #e05555;
  font-size: 12px;
  font-family: var(--font-c);
  letter-spacing: .06em;
  margin-top: 4px;
}

.wpcf7-response-output {
  font-family: var(--font-c);
  font-size: 13px;
  letter-spacing: .1em;
  padding: 16px 20px !important;
  margin: 16px 0 0 !important;
  border: none !important;
}

.wpcf7-mail-sent-ok {
  background: rgba(196, 151, 58, .15) !important;
  color: var(--gold) !important;
}

.wpcf7-mail-sent-ng,
.wpcf7-aborted,
.wpcf7-validation-errors {
  background: rgba(224, 85, 85, .1) !important;
  color: #e05555 !important;
}

/* ── EXPERIENCIA ── */
#experiencia {
  background: var(--surface);
  color: var(--black);
}

.exp-grid {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 88px;
  align-items: start;
}

.exp-big {
  font-family: var(--font-d);
  font-size: 108px;
  font-weight: 300;
  color: var(--gold);
  line-height: .9;
  margin-bottom: 16px;
}

.exp-big-lbl {
  font-family: var(--font-c);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #666;
  line-height: 1.7;
  margin-bottom: 36px;
}

.exp-tags {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 28px;
}

.exp-tag {
  font-family: var(--font-c);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 20px;
  border: 1px solid #bbb;
  color: #444;
  width: fit-content;
  min-width: 180px;
  display: block;
}

.exp-main p {
  font-size: 17px;
  line-height: 1.85;
  color: #2c2c2c;
  margin-bottom: 22px;
}

.exp-ul {
  list-style: none;
  margin-bottom: 32px;
}

.exp-ul li {
  font-size: 15px;
  line-height: 1.75;
  color: #333;
  padding: 10px 0 10px 22px;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.exp-ul li:last-child {
  border-bottom: none;
}

.exp-ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.boutique-q {
  background: var(--black);
  color: var(--white);
  padding: 40px 48px;
  margin-top: 44px;
  border-left: 3px solid var(--gold);
}

.boutique-q p {
  font-family: var(--font-d);
  font-size: 19px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.75;
  color: rgba(255, 255, 255, .8);
}

.startups {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, .1);
}

.startups-lbl {
  font-family: var(--font-c);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 12px;
}

.startups-txt {
  font-size: 18px;
  color: #444;
  line-height: 1.9;
}

/* ── FOOTER ── */
footer {
  background: #000000;
  border-top: 1px solid var(--border);
  padding: 64px 48px 44px;
}

.foot {
  max-width: 1320px;
  margin: 0 auto;
}

.foot-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: start;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.foot-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.foot-logo img {
  height: 24px;
  width: auto;
}

.foot-tag {
  font-family: var(--font-d);
  font-size: 19px;
  font-style: italic;
  color: var(--gold);
}

.foot-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.foot-nav a {
  font-family: var(--font-c);
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  transition: color .2s;
}

.foot-nav a:hover {
  color: var(--gold-lt);
}

.foot-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.foot-copy {
  font-family: var(--font-c);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .18);
}

.foot-soc {
  display: flex;
  gap: 24px;
}

.foot-soc a {
  font-family: var(--font-c);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .22);
  transition: color .2s;
}

.foot-soc a:hover {
  color: var(--gold);
}

/* ── REVEAL ANIMATION ── */
.rv {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.rv.in {
  opacity: 1;
  transform: translateY(0);
}

.rv:nth-child(2) { transition-delay: .1s; }
.rv:nth-child(3) { transition-delay: .2s; }
.rv:nth-child(4) { transition-delay: .3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  header .lang-sw {
    display: none;
  }

  .mob-nav .lang-sw {
    display: flex !important;
  }

  .hdr {
    padding: 0 20px;
    gap: 12px;
    height: 60px;
  }

  .logo-wrap img {
    height: 32px;
    width: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-right {
    display: none;
  }

  .quien-grid,
  .meto-grid,
  .exp-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .quien-img,
  .meto-visual {
    display: none;
  }

  .areas-hdr {
    grid-template-columns: 1fr;
  }

  .areas-grid {
    grid-template-columns: 1fr;
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }

  .exp-side .exp-big {
    font-size: 72px;
  }
}

@media (max-width: 768px) {
  .hdr {
    padding: 0 20px;
    height: 68px;
  }

  nav.main-nav {
    display: none;
  }

  .ham {
    display: flex;
  }

  .mob-nav {
    top: 68px;
  }

  /* Secciones — padding reducido */
  .wrap {
    padding: 64px 20px;
  }

  /* Hero */
  #hero {
    min-height: unset;
  }

  .hero-inner {
    padding: 84px 20px 32px;
    grid-template-columns: 1fr;
  }

  .hero-left {
    padding: 0;
  }

  .hero-h1 {
    font-size: 44px;
  }

  .hero-sub {
    font-size: 14px;
    margin-bottom: 36px;
  }

  .hero-ctas {
    display: none;
  }

  /* Stats */
  .stats-bar {
    padding-bottom: 24px;
  }

  .stats-inner {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
  }

  .stat:last-child {
    border-bottom: none;
  }

  .stat-n {
    font-size: 44px;
  }

  /* Áreas de negocio */
  .areas-hdr {
    gap: 32px;
  }

  .areas-intro {
    font-size: 17px;
  }

  .area-card {
    padding: 36px 28px;
  }

  .area-n {
    font-size: 56px;
  }

  /* Metodología */
  .pillars {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  /* Experiencia */
  .exp-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .exp-big {
    font-size: 80px;
  }

  .exp-tags {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .exp-tag {
    min-width: unset;
  }

  /* Contacto */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cform {
    padding: 36px 24px;
  }

  .cform .wpcf7-form .frow,
  .cform .frow {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .foot-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .foot-nav {
    align-items: flex-start;
  }

  .foot-bot {
    flex-direction: column;
    align-items: flex-start;
  }

  footer {
    padding: 48px 20px 36px;
  }

  /* Quote */
  .boutique-q {
    padding: 28px 24px;
  }

  /* Títulos h2 */
  .sec-h2 {
    font-size: 36px;
  }
}

/* ── MÓVIL PEQUEÑO (≤ 480px) ── */
@media (max-width: 480px) {
  .hero-h1 {
    font-size: 36px;
  }

  .hero-eyebrow {
    font-size: 13px;
  }

  .stat-n {
    font-size: 38px;
  }

  .exp-big {
    font-size: 64px;
  }

  .sec-h2 {
    font-size: 30px;
  }

  .area-card {
    padding: 28px 20px;
  }

  .pillar {
    padding: 22px 18px;
  }

  .cform {
    padding: 28px 16px;
  }

  .boutique-q {
    padding: 24px 20px;
  }

  .boutique-q p {
    font-size: 16px;
  }

  .foot-soc {
    gap: 16px;
    flex-wrap: wrap;
  }

  .meto-badge {
    left: 0;
    max-width: 100%;
    position: relative;
    bottom: auto;
    margin-top: 16px;
  }
}
