/* Pier Sans Expanded fallback via Barlow Condensed + Barlow */
:root {
  --ink:     #292E32;
  --gold:    #E8B457;
  --teal:    #4AD196;
  --white:   #FBFDFC;
  --dark-teal: #324D54;
  --teal-mid: #3aac7c;
  --gold-dark: #c9952e;
  --line:    rgba(41,46,50,0.1);
  --line-light: rgba(251,253,252,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--ink);
  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: 1rem 5vw;
  transition: background .3s, box-shadow .3s;
}
nav.scrolled {
  background: rgba(41,46,50,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.nav-logo {
  display: flex; align-items: center; gap: .75rem;
  text-decoration: none;
}
.nav-logo-mark {
  width: 36px; height: 36px;
}
.nav-wordmark {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 1.35rem;
  letter-spacing: .04em; color: var(--white);
  text-transform: uppercase;
}
.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}
.nav-links a {
  font-size: .85rem; font-weight: 500;
  color: rgba(251,253,252,.55);
  text-decoration: none;
  letter-spacing: .04em; text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--teal); color: var(--ink);
  padding: .55rem 1.5rem; border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem; font-weight: 700;
  text-decoration: none; letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: #5de0a8; transform: translateY(-1px); }

/* ─────────────────────────────── HERO */
.hero {
  min-height: 100vh;
  background: var(--ink);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}

.orbit-bg {
  position: absolute;
  top: 50%; right: -5%;
  transform: translateY(-50%);
  width: 65vw; height: 65vw;
  max-width: 860px; max-height: 860px;
  opacity: .18;
}
.orbit-fg {
  position: absolute;
  top: 50%; right: 4%;
  transform: translateY(-50%);
  width: 48vw; height: 48vw;
  max-width: 640px; max-height: 640px;
  animation: slowSpin 80s linear infinite;
}

.hero-content {
  position: relative; z-index: 2;
  padding: 8rem 5vw 6rem 8vw;
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1.75rem;
  animation: fadeUp .6s ease both;
}
.hero-eyebrow::before {
  content: ''; width: 28px; height: 2px; background: var(--teal); display: block;
}

.hero-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 4vw;
  font-weight: 800; line-height: .95;
  letter-spacing: -.01em; text-transform: uppercase;
  color: var(--white);
  animation: fadeUp .6s .1s ease both;
}
.hero-h1 .accent { color: var(--teal); display: block; }
.hero-h1 .accent-gold { color: var(--gold); }

.hero-sub {
  margin-top: 2rem;
  font-size: 1.1rem; line-height: 1.7;
  color: rgba(251,253,252,.55); font-weight: 300;
  max-width: 460px;
  animation: fadeUp .6s .2s ease both;
}

.hero-actions {
  display: flex; gap: 1rem; align-items: center;
  margin-top: 3rem; flex-wrap: wrap;
  animation: fadeUp .6s .3s ease both;
}
.btn-primary {
  background: var(--teal); color: var(--ink);
  padding: .9rem 2.25rem; border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700;
  text-decoration: none; letter-spacing: .07em;
  text-transform: uppercase;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-primary:hover {
  background: #5de0a8; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74,209,150,.3);
}
.btn-outline {
  color: rgba(251,253,252,.7);
  padding: .9rem 2rem; border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 600;
  text-decoration: none; letter-spacing: .07em;
  text-transform: uppercase;
  border: 1px solid rgba(251,253,252,.2);
  transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }

.hero-stats {
  display: flex; gap: 3rem; margin-top: 5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(251,253,252,.1);
  animation: fadeUp .6s .4s ease both;
}
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.75rem; font-weight: 800;
  color: var(--white); line-height: 1;
  letter-spacing: -.01em;
}
.stat-num sup { font-size: 1.2rem; color: var(--gold); }
.stat-label {
  font-size: .78rem; color: rgba(251,253,252,.4);
  margin-top: .35rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: .07em;
}

/* floating info cards */
.hero-card {
  position: absolute; z-index: 3;
  background: rgba(50,77,84,.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(74,209,150,.2);
  border-radius: 10px; padding: 1.1rem 1.4rem;
  animation: float 7s ease-in-out infinite;
}
.hc1 { top: 18%; right: 28%; animation-delay: 0s; min-width: 200px; }
.hc2 { bottom: 22%; right: 18%; animation-delay: -3.5s; min-width: 190px; }
.hc3 { top: 58%; right: 46%; animation-delay: -1.8s; min-width: 170px; }
.hc-badge {
  font-size: .65rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal); font-weight: 600; margin-bottom: .4rem;
  display: flex; align-items: center; gap: .4rem;
}
.hc-badge::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--teal); display: block; flex-shrink: 0;
  box-shadow: 0 0 6px var(--teal);
}
.hc-text {
  font-size: .85rem; font-weight: 500; color: var(--white); line-height: 1.35;
}

/* ─────────────────────────────── STRIP */
.strip {
  background: var(--dark-teal);
  padding: 1.1rem 5vw;
  display: flex; align-items: center; gap: 3rem; overflow: hidden;
}
.strip-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .7rem; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(251,253,252,.3);
  white-space: nowrap; flex-shrink: 0;
  font-weight: 600;
}
.strip-track {
  display: flex; gap: 3.5rem; align-items: center;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}
.strip-track span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .85rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(251,253,252,.25);
}
.strip-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); opacity: .5; flex-shrink: 0;
}

/* ─────────────────────────────── SOBRE */
.about {
  padding: 9rem 8vw;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 7rem; align-items: center;
}
.eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .75rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--teal);
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1.25rem;
}
.eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--teal); display: block; }
.section-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  font-weight: 800; line-height: .95;
  letter-spacing: -.01em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 1.5rem;
}
.section-p {
  font-size: 1.05rem; line-height: 1.75;
  color: #5a6370; font-weight: 300;
  margin-bottom: 1rem;
}
.text-link {
  display: inline-flex; align-items: center; gap: .6rem;
  color: var(--dark-teal); font-weight: 500; font-size: .9rem;
  text-decoration: none; margin-top: 1rem;
  border-bottom: 1px solid rgba(50,77,84,.25); padding-bottom: .25rem;
  transition: gap .2s, border-color .2s;
}
.text-link:hover { gap: 1rem; border-color: var(--dark-teal); }

/* feature cards */
.about-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: .875rem;
}
.feat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px; padding: 1.75rem;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(41,46,50,.08);
  border-color: rgba(74,209,150,.4);
}
.feat-card.featured {
  grid-column: 1/-1;
  background: var(--ink); border-color: transparent;
}
.feat-icon { font-size: 1.75rem; display: block; margin-bottom: 1rem; font-family: 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', sans-serif; }
.feat-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; margin-bottom: .5rem; color: var(--ink);
}
.feat-card.featured .feat-title { color: var(--teal); }
.feat-desc { font-size: .85rem; line-height: 1.65; color: #6b7580; font-weight: 300; }
.feat-card.featured .feat-desc { color: rgba(251,253,252,.5); }

/* ─────────────────────────────── PÚBLICOS */
.audiences {
  background: var(--ink);
  padding: 7rem 8vw; overflow: hidden;
}
.audiences .section-h2 { color: var(--white); margin-bottom: 0; }
.audiences .eyebrow { color: var(--gold); }
.audiences .eyebrow::before { background: var(--gold); }
.aud-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 3.5rem; gap: 2rem;
}
.aud-sub {
  font-size: .95rem; color: rgba(251,253,252,.4);
  font-weight: 300; max-width: 280px; text-align: right; line-height: 1.6;
}
.aud-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem;
}
.aud-card {
  border: 1px solid rgba(251,253,252,.08);
  border-radius: 14px; padding: 2.25rem;
  position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s;
  cursor: default;
}
.aud-card:hover { border-color: rgba(74,209,150,.35); transform: translateY(-5px); }
.aud-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg,rgba(255,255,255,.03) 0%,transparent 60%);
  pointer-events: none;
}
.aud-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 5rem; font-weight: 800; letter-spacing: -.03em;
  color: rgba(251,253,252,.04); position: absolute;
  top: .5rem; right: 1.5rem; line-height: 1;
}
.aud-icon {
  width: 46px; height: 46px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.5rem;
  font-family: 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', sans-serif;
}
.ai-teal { background: rgba(74,209,150,.15); }
.ai-gold { background: rgba(232,180,87,.15); }
.ai-blue { background: rgba(50,77,84,.4); }
.aud-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .03em; color: var(--white); margin-bottom: .75rem;
}
.aud-desc {
  font-size: .875rem; line-height: 1.7;
  color: rgba(251,253,252,.45); font-weight: 300; margin-bottom: 1.5rem;
}
.aud-list { list-style: none; display: flex; flex-direction: column; gap: .55rem; margin-bottom: 2rem; }
.aud-list li {
  font-size: .8rem; color: rgba(251,253,252,.45);
  display: flex; align-items: flex-start; gap: .65rem; line-height: 1.5;
}
.aud-list li::before { content: '↳'; color: var(--teal); opacity: .6; flex-shrink: 0; }
.aud-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .85rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--teal); text-decoration: none;
  transition: gap .2s;
}
.aud-cta:hover { gap: .85rem; }

/* ─────────────────────────────── SERVIÇOS */
.services { padding: 8rem 8vw; }
.services-intro {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 4rem; gap: 3rem;
}
.services-intro .section-p { max-width: 380px; margin: 0; }

.svc-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: 16px; overflow: hidden;
}
.svc-item {
  background: var(--white); padding: 3rem;
  position: relative; overflow: hidden;
  transition: background .2s;
}
.svc-item:hover { background: #f7f9f8; }
.svc-item::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0; background: var(--teal);
  transition: height .35s ease;
}
.svc-item:hover::before { height: 100%; }
.svc-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: #aab0b8; margin-bottom: 1.5rem;
}
.svc-icon { font-size: 2.25rem; display: block; margin-bottom: 1rem; }
.svc-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .03em; color: var(--ink); margin-bottom: .75rem;
}
.svc-desc { font-size: .9rem; line-height: 1.7; color: #6b7580; font-weight: 300; max-width: 400px; }
.svc-link {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1.75rem; font-family: 'Barlow Condensed', sans-serif;
  font-size: .82rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--dark-teal); text-decoration: none;
  border-bottom: 1px solid rgba(50,77,84,.2); padding-bottom: .2rem;
  transition: gap .2s, border-color .2s;
}
.svc-link:hover { gap: .85rem; border-color: var(--teal); color: var(--teal); }

/* ─────────────────────────────── YOUTUBE */
.youtube {
  padding: 8rem 8vw;
  background: var(--ink);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.yt-icon {
  width: 64px; height: auto;
  display: block; margin-bottom: 1.75rem;
}
.youtube .eyebrow { color: #FF0000; }
.youtube .eyebrow::before { background: #FF0000; }
.youtube .section-h2 { color: var(--white); }
.youtube .section-p { color: rgba(251,253,252,.5); }
.btn-yt {
  display: inline-flex; align-items: center; gap: .75rem;
  background: #FF0000; color: var(--white);
  padding: .9rem 2.25rem; border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; text-decoration: none;
  margin-top: 2rem;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-yt svg { width: 22px; height: 15px; flex-shrink: 0; }
.btn-yt:hover {
  background: #cc0000; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,0,0,.3);
}
.yt-right { display: flex; flex-direction: column; gap: 1rem; }

/* — Card player (fallback sem iframe) */
.yt-player-card {
  display: block; text-decoration: none;
  aspect-ratio: 16/9;
  border-radius: 12px; overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 55%, #0f3460 100%);
  position: relative;
  transition: transform .3s;
}
.yt-player-card:hover { transform: scale(1.015); }
.yt-player-card-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.25rem; padding: 2rem;
}
.yt-player-card-play {
  width: 68px; height: 68px; border-radius: 50%;
  background: #FF0000;
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
  box-shadow: 0 0 40px rgba(255,0,0,.5);
  transition: transform .2s, box-shadow .2s;
}
.yt-player-card:hover .yt-player-card-play {
  transform: scale(1.1);
  box-shadow: 0 0 60px rgba(255,0,0,.7);
}
.yt-player-card-play svg { width: 30px; height: 30px; }
.yt-player-card-text { text-align: center; }
.yt-player-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; color: rgba(255,255,255,.9);
  margin-bottom: .35rem;
}
.yt-player-card-sub {
  font-size: .82rem; color: rgba(255,255,255,.4); font-weight: 300;
}
.yt-player-card-badge {
  position: absolute; bottom: 1.25rem; right: 1.5rem;
  display: flex; align-items: center; gap: .5rem;
  font-size: .72rem; color: rgba(255,255,255,.35); font-weight: 300;
}
.yt-player-card-badge svg { width: 60px; height: 14px; }
.yt-cards { display: flex; flex-direction: column; gap: .75rem; }
.yt-card {
  display: flex; align-items: center; gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: rgba(251,253,252,.04);
  border: 1px solid rgba(251,253,252,.08);
  border-radius: 12px; text-decoration: none;
  transition: background .25s, border-color .25s, transform .25s;
}
.yt-card:hover {
  background: rgba(251,253,252,.07);
  border-color: rgba(255,0,0,.35);
  transform: translateX(6px);
}
.yt-thumb {
  width: 80px; height: 52px; border-radius: 8px; flex-shrink: 0;
  background: rgba(255,0,0,.12);
  display: flex; align-items: center; justify-content: center;
}
.yt-play-btn {
  width: 30px; height: 30px; border-radius: 50%;
  background: #FF0000; color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.yt-play-btn svg { width: 15px; height: 15px; }
.yt-card-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; color: rgba(251,253,252,.85);
  margin-bottom: .25rem;
}
.yt-card-sub {
  font-size: .78rem; color: rgba(251,253,252,.35);
  font-weight: 300;
}

/* ─────────────────────────────── MEMBRO */
.member {
  background: var(--dark-teal); padding: 8rem 8vw;
  position: relative; overflow: hidden;
}
.member-orbit {
  position: absolute; right: -5%; top: 50%;
  transform: translateY(-50%);
  width: 50vw; max-width: 600px; opacity: .08;
  animation: slowSpin 90s linear infinite;
}
.member-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center; position: relative; z-index: 1;
}
.member .eyebrow { color: var(--gold); }
.member .eyebrow::before { background: var(--gold); }
.member .section-h2 { color: var(--white); margin-bottom: 1.5rem; }
.member-p { font-size: 1.05rem; line-height: 1.75; color: rgba(251,253,252,.55); font-weight: 300; }
.member-actions { display: flex; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap; }
.btn-gold {
  background: var(--gold); color: var(--ink);
  padding: .9rem 2.25rem; border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-gold:hover {
  background: #f0c46a; transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,180,87,.35);
}
.btn-ghost-white {
  color: rgba(251,253,252,.6); padding: .9rem 2rem; border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 600; letter-spacing: .07em;
  text-transform: uppercase; text-decoration: none;
  border: 1px solid rgba(251,253,252,.2);
  transition: border-color .2s, color .2s;
}
.btn-ghost-white:hover { border-color: var(--white); color: var(--white); }

.benefits { display: flex; flex-direction: column; gap: .875rem; }
.benefit {
  display: flex; align-items: flex-start; gap: 1rem;
  background: rgba(251,253,252,.05);
  border: 1px solid rgba(251,253,252,.08);
  border-radius: 12px; padding: 1.25rem 1.5rem;
  transition: background .2s, border-color .2s;
}
.benefit:hover {
  background: rgba(251,253,252,.08);
  border-color: rgba(74,209,150,.25);
}
.benefit-check {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--teal); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 800;
}
.benefit-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .95rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; color: var(--white); margin-bottom: .2rem;
}
.benefit-desc { font-size: .8rem; color: rgba(251,253,252,.4); font-weight: 300; line-height: 1.5; }

/* ─────────────────────────────── CONTATO */
.contact {
  padding: 7rem 8vw;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.contact-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800; line-height: .95;
  letter-spacing: -.01em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 1.25rem;
}
.contact-p { font-size: 1rem; line-height: 1.75; color: #6b7580; font-weight: 300; margin-bottom: 2rem; }
.contact-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-ink {
  background: var(--ink); color: var(--white);
  padding: .9rem 2.25rem; border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; text-decoration: none;
  transition: background .2s, transform .15s;
}
.btn-ink:hover { background: var(--dark-teal); transform: translateY(-2px); }

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-row {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.5rem; border: 1px solid var(--line);
  border-radius: 12px; transition: border-color .2s;
}
.contact-row:hover { border-color: rgba(74,209,150,.4); }
.contact-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: #f0f5f3;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-type {
  font-size: .7rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: #aab0b8; margin-bottom: .25rem;
}
.contact-val { font-size: .95rem; font-weight: 500; color: var(--ink); }

/* ─────────────────────────────── FOOTER */
footer {
  background: var(--ink); color: var(--white);
  padding: 5rem 8vw 2.5rem;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem; margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(251,253,252,.08);
}
.footer-logo-block {}
.footer-logo {
  display: flex; align-items: center; gap: .75rem;
  text-decoration: none; margin-bottom: 1.25rem;
}
.footer-wordmark {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 1.4rem;
  letter-spacing: .04em; color: var(--white);
  text-transform: uppercase;
}
.footer-tagline {
  font-size: .875rem; line-height: 1.65;
  color: rgba(251,253,252,.35); font-weight: 300; max-width: 240px;
}
.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(251,253,252,.25);
  margin-bottom: 1.5rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-links a {
  font-size: .875rem; color: rgba(251,253,252,.45);
  text-decoration: none; font-weight: 300; transition: color .2s;
}
.footer-links a:hover { color: var(--teal); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  font-size: .78rem; color: rgba(251,253,252,.2);
}
.footer-teal { color: var(--teal); }

/* ─────────────────────────────── ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes slowSpin {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: .1s; } .rd2 { transition-delay: .2s; } .rd3 { transition-delay: .3s; }

/* ─────────────────────────────── MVV */
.mvv {
  padding: 8rem 8vw;
  background: #f7f9f8;
}
.mvv-header {
  max-width: 560px; margin-bottom: 4.5rem;
}
.mvv-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin-bottom: 4rem;
}
.mvv-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px; padding: 2.5rem;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.mvv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(41,46,50,.08);
  border-color: rgba(74,209,150,.4);
}
.mvv-card.dark {
  background: var(--ink); border-color: transparent;
}
.mvv-card-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--teal);
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: 1rem;
}
.mvv-card-eyebrow::before {
  content: ''; width: 18px; height: 2px; background: var(--teal); display: block;
}
.mvv-card.dark .mvv-card-eyebrow { color: var(--gold); }
.mvv-card.dark .mvv-card-eyebrow::before { background: var(--gold); }
.mvv-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .02em; color: var(--ink); margin-bottom: .875rem;
}
.mvv-card.dark .mvv-card-title { color: var(--white); }
.mvv-card-text {
  font-size: .95rem; line-height: 1.75; color: #5a6370; font-weight: 300;
}
.mvv-card.dark .mvv-card-text { color: rgba(251,253,252,.55); }

.valores-grid {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 1rem;
}
.valor-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px; padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.valor-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(41,46,50,.08);
  border-color: rgba(74,209,150,.4);
}
.valor-icon { font-size: 1.75rem; display: block; margin-bottom: .875rem; }
.valor-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .95rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .04em; color: var(--ink); margin-bottom: .5rem;
}
.valor-desc { font-size: .78rem; line-height: 1.6; color: #6b7580; font-weight: 300; }

/* ─────────────────────────────── MOBILE */
@media (max-width: 900px) {
  .hc1,.hc2,.hc3,.orbit-fg { display: none; }
  .hero-content { padding: 7rem 6vw 5rem; }
  .hero-h1 { font-size: 11vw; }
  .about, .member-inner, .contact, .youtube { grid-template-columns: 1fr; gap: 3.5rem; }
  .aud-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .mvv-grid { grid-template-columns: 1fr; }
  .valores-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .services-intro { flex-direction: column; }
  nav .nav-links { display: none; }
  .hero-stats { gap: 2rem; }
}
