/* ═══════════════════════════════════════════════════════
   ARDM — Sistemas de Rega
   Design System v3 — Premium Ibérico
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --black:      #0A0A0A;
  --charcoal:   #1A1A1A;
  --carbon:     #2C2C2C;
  --stone:      #F5F0E8;
  --stone-dark: #E5DDD0;
  --white:      #FFFFFF;
  --red:        #8B1A1A;
  --red-hover:  #A52020;
  --gold:       #C4963A;
  --gold-light: #D4A84A;
  --gray-500:   #6B7280;
  --gray-300:   #D1D5DB;
  --gray-100:   #F3F4F6;

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  --container: 1200px;
  --radius:    6px;
  --transition: 0.22s ease;

  --shadow-card: 0 2px 12px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.05);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.08);
}

/* ─── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; font-size: 16px; }
body { font-family: var(--font-body); color: var(--black); background: var(--white); line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, textarea, select { font-family: var(--font-body); }

/* ─── CONTAINER ─────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── GOLD LINE (signature) ─────────────────────────── */
.gold-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  display: block;
}
.gold-line--full { width: 100%; }

/* ─── NAVBAR ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 64px;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,150,58,0.25);
  transition: background var(--transition);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav__logo-img { height: 36px; width: auto; }
.nav__logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav__logo-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
}
.nav__logo-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav__link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  padding: 6px 14px;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav__link:hover, .nav__link.active { color: var(--white); }
.nav__link.active {
  background: rgba(255,255,255,0.06);
}
.nav__divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.12);
  margin: 0 8px;
}
.nav__phone {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.nav__cta {
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--radius);
  margin-left: 8px;
  letter-spacing: 0.03em;
  transition: background var(--transition);
  white-space: nowrap;
}
.nav__cta:hover { background: var(--red-hover); }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
}

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  padding-top: 64px;
}
.hero__left {
  background: var(--black);
  display: flex;
  align-items: center;
  padding: 80px 64px 80px 40px;
  position: relative;
}
.hero__left::after {
  content: '';
  position: absolute;
  right: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(196,150,58,0.4), transparent);
}
.hero__right {
  position: relative;
  overflow: hidden;
}
.hero__right-img {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/hero.jpg');
  background-size: cover;
  background-position: 60% 30%;
}
.hero__right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.3) 0%, transparent 50%);
}
.hero__content { max-width: 580px; }
.hero__kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__kicker::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic;
  color: rgba(255,255,255,0.65);
  display: block;
}
.hero__gold-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(196,150,58,0.6), transparent);
  margin-bottom: 24px;
}
.hero__sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 440px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero__trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
}
.hero__trust-item {
  padding: 16px 14px;
  text-align: center;
  background: rgba(255,255,255,0.02);
}
.hero__trust-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__trust-num span { color: var(--gold); }
.hero__trust-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.3;
}

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius);
  padding: 12px 26px;
  transition: all var(--transition);
  letter-spacing: 0.02em;
  white-space: nowrap;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn--red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--red:hover { background: var(--red-hover); border-color: var(--red-hover); }
.btn--ghost-white {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.25);
}
.btn--ghost-white:hover { color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn--ghost-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--gray-300);
}
.btn--ghost-dark:hover { border-color: var(--black); }
.btn--sm { font-size: 13px; padding: 9px 18px; }
.btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ─── CLIENTES STRIP ─────────────────────────────────── */
.clients-strip {
  background: var(--stone);
  padding: 48px 0;
  border-bottom: 1px solid var(--stone-dark);
}
.clients-strip__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-500);
  text-align: center;
  margin-bottom: 28px;
}
.clients-strip__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.client-pill {
  font-size: 13px;
  font-weight: 500;
  color: var(--carbon);
  padding: 7px 18px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--stone-dark);
  transition: all var(--transition);
  white-space: nowrap;
}
.client-pill:hover { border-color: var(--gold); color: var(--black); }
.client-pill--featured {
  border-color: rgba(196,150,58,0.4);
  color: var(--black);
  font-weight: 600;
}
.clients-strip__more {
  text-align: center;
  margin-top: 18px;
  font-size: 13px;
  color: var(--gray-500);
}
.clients-strip__more a { color: var(--red); font-weight: 600; }

/* ─── SERVIÇOS ───────────────────────────────────────── */
.services {
  padding: 112px 0;
  background: var(--white);
}
.section-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 600;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.section-title--light { color: var(--white); }
.section-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 520px;
}
.section-sub--light { color: rgba(255,255,255,0.6); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-300);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 64px;
}
.service-card {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
  transition: background var(--transition);
}
.service-card:hover { background: var(--stone); }
.service-card__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  opacity: 0.7;
}
.service-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}
.service-card__icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--black);
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.15;
}
.service-card__text {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 28px;
}
.service-card__link {
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition);
}
.service-card__link:hover { gap: 14px; }
.service-card__link svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none; stroke-width: 2.5;
}
.service-card__gold-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover .service-card__gold-accent { opacity: 1; }

/* ─── NÚMEROS / STATS ────────────────────────────────── */
.numbers {
  background: var(--black);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.numbers::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.numbers::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(196,150,58,0.3), transparent);
}
.numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.04);
}
.numbers__item {
  padding: 48px 32px;
  text-align: center;
  position: relative;
}
.numbers__item::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.06);
}
.numbers__item:last-child::after { display: none; }
.numbers__value {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.numbers__value span { color: var(--gold); }
.numbers__label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.5;
}

/* ─── COMO TRABALHAMOS ───────────────────────────────── */
.process {
  padding: 112px 0;
  background: var(--stone);
}
.process__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
  margin-top: 64px;
}
.process__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process__step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--stone-dark);
  cursor: pointer;
  transition: all var(--transition);
}
.process__step:first-child { padding-top: 0; }
.process__step:last-child { border-bottom: none; }
.process__step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-top: 4px;
  opacity: 0.6;
}
.process__step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
  line-height: 1.2;
}
.process__step-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1.7;
}
.process__visual {
  background: var(--black);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process__visual-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}
.process__visual-content {
  position: relative;
  z-index: 2;
  padding: 48px;
  text-align: center;
}
.process__visual-icon svg {
  width: 64px;
  height: 64px;
  stroke: rgba(196,150,58,0.6);
  fill: none;
  stroke-width: 0.8;
}
.process__visual-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  margin-top: 20px;
  line-height: 1.4;
}

/* ─── CASE STUDY ─────────────────────────────────────── */
.case {
  background: var(--white);
  padding: 112px 0;
  border-top: 1px solid var(--gray-300);
}
.case__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.case__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-300);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 36px 0;
}
.case__stat {
  padding: 24px 20px;
  background: var(--white);
  text-align: center;
}
.case__stat-val {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  margin-bottom: 6px;
}
.case__stat-val span { color: var(--gold); }
.case__stat-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--gray-500);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
}
.case__quote-block {
  background: var(--stone);
  border-radius: var(--radius);
  padding: 44px;
  border-left: 3px solid var(--gold);
  position: relative;
}
.case__quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 20px;
  display: block;
}
.case__quote-text {
  font-family: var(--font-display);
  font-size: 19px;
  font-style: italic;
  color: var(--black);
  line-height: 1.65;
  margin-bottom: 24px;
}
.case__quote-author {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.case__disclaimer {
  font-size: 11px;
  color: var(--gray-500);
  margin-top: 24px;
  font-style: italic;
}

/* ─── COBERTURA IBÉRICA ──────────────────────────────── */
.coverage {
  background: var(--black);
  padding: 112px 0;
  position: relative;
  overflow: hidden;
}
.coverage::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(196,150,58,0.4), transparent);
}
.coverage__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.coverage__map {
  position: relative;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coverage__map svg {
  width: 100%;
  max-width: 400px;
  opacity: 0.9;
}
.coverage__map-pulse {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
}
.coverage__map-pulse::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { opacity: 0.8; transform: scale(1); }
  100% { opacity: 0; transform: scale(2.5); }
}
.coverage__regions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.coverage__region {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
}
.coverage__region-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── FOUNDER ────────────────────────────────────────── */
.founder {
  padding: 112px 0;
  background: var(--stone);
}
.founder__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.founder__photo {
  aspect-ratio: 3/4;
  background: var(--stone-dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.founder__photo-placeholder {
  text-align: center;
  color: var(--gray-500);
}
.founder__photo-placeholder svg {
  width: 80px;
  height: 80px;
  stroke: currentColor;
  fill: none;
  stroke-width: 0.8;
  margin-bottom: 16px;
}
.founder__photo-placeholder p {
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
}
.founder__photo-frame {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(196,150,58,0.2);
  border-radius: var(--radius);
  pointer-events: none;
}
.founder__name {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 6px;
}
.founder__role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.founder__bio {
  font-size: 16px;
  font-weight: 300;
  color: var(--carbon);
  line-height: 1.8;
  margin-bottom: 36px;
}
.founder__exp {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--stone-dark);
  border-bottom: 1px solid var(--stone-dark);
}
.founder__exp-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.founder__exp-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ─── CTA FINAL ──────────────────────────────────────── */
.cta-section {
  background: var(--black);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.cta-section__kicker {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.cta-section__sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin-bottom: 44px;
}
.cta-section__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.cta-section__contacts {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.cta-contact:hover { color: rgba(255,255,255,0.8); }
.cta-contact svg {
  width: 15px;
  height: 15px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
}
.cta-contact--urgent { color: rgba(255,255,255,0.6); }
.cta-contact--urgent svg { stroke: var(--red); }

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
  background: #060606;
  padding: 64px 0 28px;
}
.footer__top {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(196,150,58,0.3), transparent);
  margin-bottom: 56px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__logo-img { height: 34px; margin-bottom: 16px; opacity: 0.8; }
.footer__tagline {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  max-width: 240px;
}
.footer__col-title {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.7;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer__links a:hover { color: rgba(255,255,255,0.75); }
.footer__contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}
.footer__contact-row svg {
  width: 13px;
  height: 13px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.6;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.06em;
}
.footer__copy a { color: rgba(255,255,255,0.3); transition: color var(--transition); }
.footer__copy a:hover { color: rgba(255,255,255,0.6); }
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.footer__social a:hover { border-color: rgba(196,150,58,0.4); }
.footer__social svg {
  width: 13px;
  height: 13px;
  stroke: rgba(255,255,255,0.3);
  fill: none;
  stroke-width: 2;
}
.footer__social a:hover svg { stroke: var(--gold); }

/* ─── PAGE HERO (subpáginas) ─────────────────────────── */
.page-hero {
  background: var(--black);
  padding: 120px 0 80px;
  padding-top: calc(64px + 80px);
  border-bottom: 1px solid rgba(196,150,58,0.2);
}
.page-hero__kicker {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0.8;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.page-hero__sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  line-height: 1.7;
}

/* ─── COOKIE BANNER ──────────────────────────────────── */
.cookie {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--charcoal);
  border-top: 1px solid rgba(196,150,58,0.25);
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 9999;
  flex-wrap: wrap;
}
.cookie__text {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  max-width: 600px;
  line-height: 1.6;
}
.cookie__text a { color: var(--gold); text-decoration: underline; }
.cookie__btns { display: flex; gap: 8px; }
.cookie__accept {
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: background var(--transition);
  font-family: var(--font-body);
}
.cookie__accept:hover { background: var(--red-hover); }
.cookie__decline {
  background: transparent;
  color: rgba(255,255,255,0.35);
  font-size: 12px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.cookie__decline:hover { color: rgba(255,255,255,0.7); }

/* ─── FORMS ──────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--carbon);
  margin-bottom: 7px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 12px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,150,58,0.1);
}
.form-textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239CA3AF' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success { display: none; text-align: center; padding: 60px 20px; }
.form-success__icon {
  width: 56px; height: 56px;
  background: rgba(196,150,58,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.form-success__icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 2.5; }
.form-success__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
}
.form-success__text { font-size: 15px; font-weight: 300; color: var(--gray-500); line-height: 1.6; }

/* ─── PORTFOLIO ──────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-300);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  overflow: hidden;
}
.p-card {
  background: var(--white);
  transition: background var(--transition);
}
.p-card:hover { background: var(--stone); }
.p-card__img {
  width: 100%; height: 200px;
  background: var(--stone);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.p-card__img img { width: 100%; height: 100%; object-fit: cover; }
.p-card__placeholder {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  color: var(--gray-500);
}
.p-card__placeholder svg { width: 32px; height: 32px; stroke: currentColor; fill: none; stroke-width: 1; }
.p-card__placeholder span { font-size: 11px; font-family: var(--font-mono); letter-spacing: 0.08em; }
.p-card__badge {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--font-mono);
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px;
  background: rgba(10,10,10,0.75); color: var(--gold);
}
.p-card__body { padding: 24px; }
.p-card__client {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600;
  color: var(--black); margin-bottom: 4px;
}
.p-card__location {
  font-family: var(--font-mono);
  font-size: 10px; color: var(--gray-500);
  letter-spacing: 0.08em; margin-bottom: 12px;
  display: flex; align-items: center; gap: 5px;
}
.p-card__desc { font-size: 13px; font-weight: 300; color: var(--gray-500); line-height: 1.65; }
.p-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.p-card__tag {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gray-100); color: var(--gray-500);
  padding: 3px 10px; border-radius: 2px;
}

/* ─── PRODUTOS ───────────────────────────────────────── */
.prod-cat { padding: 80px 0; border-bottom: 1px solid var(--gray-300); }
.prod-cat:last-child { border-bottom: none; }
.prod-cat__header {
  display: flex; align-items: center; gap: 16px; margin-bottom: 36px;
}
.prod-cat__icon {
  width: 44px; height: 44px;
  background: var(--stone);
  border: 1px solid var(--stone-dark);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.prod-cat__icon svg { width: 22px; height: 22px; stroke: var(--black); fill: none; stroke-width: 1.5; }
.prod-cat__name { font-family: var(--font-display); font-size: 26px; font-weight: 600; color: var(--black); }
.prod-cat__desc { font-size: 13px; font-weight: 300; color: var(--gray-500); margin-top: 2px; }
.brands-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--gray-300); border: 1px solid var(--gray-300); border-radius: var(--radius); overflow: hidden; }
.brand-card { background: var(--white); padding: 24px; text-align: center; transition: background var(--transition); }
.brand-card:hover { background: var(--stone); }
.brand-card__name { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--black); margin-bottom: 4px; }
.brand-card__origin { font-family: var(--font-mono); font-size: 10px; color: var(--gray-500); letter-spacing: 0.06em; line-height: 1.5; }

/* ─── VÍDEOS ─────────────────────────────────────────── */
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--gray-300); border: 1px solid var(--gray-300); border-radius: var(--radius); overflow: hidden; }
.v-card { background: var(--white); }
.v-card__embed { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; background: var(--black); }
.v-card__embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.v-card__body { padding: 28px; }
.v-card__title { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--black); margin-bottom: 8px; }
.v-card__desc { font-size: 14px; font-weight: 300; color: var(--gray-500); line-height: 1.65; }

/* ─── CONTACTO PAGE ──────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: start; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--gray-300); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 40px; height: 40px;
  background: var(--stone); border: 1px solid var(--stone-dark);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; stroke: var(--black); fill: none; stroke-width: 1.5; }
.contact-info-label { font-family: var(--font-mono); font-size: 9px; color: var(--gray-500); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 5px; }
.contact-info-value { font-size: 15px; font-weight: 500; color: var(--black); }
.contact-info-note { font-size: 12px; font-weight: 300; color: var(--gray-500); margin-top: 3px; }
.contact-form-box {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow-card);
}
.contact-form-title { font-family: var(--font-display); font-size: 26px; font-weight: 600; color: var(--black); margin-bottom: 6px; }
.contact-form-sub { font-size: 14px; font-weight: 300; color: var(--gray-500); margin-bottom: 32px; }
.map-box { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-300); height: 260px; margin-top: 32px; }
.map-box iframe { width: 100%; height: 100%; border: none; filter: grayscale(30%) contrast(0.9); }

/* ─── SOBRE NÓS ──────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--gray-300); border: 1px solid var(--gray-300); border-radius: var(--radius); overflow: hidden; }
.value-card { background: var(--white); padding: 32px; display: flex; gap: 16px; transition: background var(--transition); }
.value-card:hover { background: var(--stone); }
.value-icon { width: 40px; height: 40px; background: var(--stone); border: 1px solid var(--stone-dark); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.value-icon svg { width: 18px; height: 18px; stroke: var(--black); fill: none; stroke-width: 1.5; }
.value-title { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--black); margin-bottom: 6px; }
.value-text { font-size: 13px; font-weight: 300; color: var(--gray-500); line-height: 1.7; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--gray-300); border: 1px solid var(--gray-300); border-radius: var(--radius); overflow: hidden; }
.team-card { background: var(--white); text-align: center; transition: background var(--transition); }
.team-card:hover { background: var(--stone); }
.team-photo { width: 100%; height: 240px; background: var(--stone); display: flex; align-items: center; justify-content: center; }
.team-photo svg { width: 56px; height: 56px; stroke: var(--gray-300); fill: none; stroke-width: 0.8; }
.team-body { padding: 22px; }
.team-name { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--black); margin-bottom: 4px; }
.team-role { font-family: var(--font-mono); font-size: 10px; color: var(--gray-500); letter-spacing: 0.1em; text-transform: uppercase; }

/* ─── UTILITIES ──────────────────────────────────────── */
.mt-12 { margin-top: 12px; }
.mt-20 { margin-top: 20px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-12 { margin-bottom: 12px; }
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }
.hidden { display: none !important; }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__right { height: 400px; }
  .hero__left { padding: 80px 40px; }
  .hero__left::after { display: none; }
  .coverage__inner { grid-template-columns: 1fr; }
  .founder__inner { grid-template-columns: 1fr; }
  .founder__photo { max-height: 400px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .wrap { padding: 0 20px; }
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0;
    background: var(--black); padding: 20px;
    border-bottom: 1px solid rgba(196,150,58,0.2);
    gap: 4px; z-index: 999;
  }
  .nav__divider { display: none; }
  .services__grid { grid-template-columns: 1fr; }
  .numbers__grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid { grid-template-columns: 1fr; }
  .case__inner { grid-template-columns: 1fr; }
  .case__stats { grid-template-columns: repeat(3, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__trust { grid-template-columns: 1fr; }
  .hero__left { padding: 60px 20px; }
  .coverage__regions { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .numbers__grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}
