/* ========== TOKENS ========== */
:root {
  --azul: #0B71A1;
  --azul-deep: #00276D;
  --ciano: #00BDFF;
  --grafite: #373435;
  --bg: #F6F8FB;
  --bg-2: #EAF1F7;
  --branco: #FFFFFF;
  --txt: #1A2233;
  --muted: #5B6878;
  --line: rgba(11,113,161,0.12);
  --shadow-1: 0 1px 2px rgba(15,30,60,0.04), 0 8px 24px rgba(15,30,60,0.06);
  --shadow-2: 0 20px 60px -20px rgba(0,39,109,0.35);
  --r-lg: 28px;
  --r-md: 18px;
  --r-sm: 12px;
  --r-pill: 999px;
}

/* ========== RESET / BASE ========== */
* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--txt);
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.dark {
  --bg: #0A1224;
  --bg-2: #0F1A33;
  --branco: #0F1A33;
  --txt: #EAF1F7;
  --muted: #9AA8BD;
  --line: rgba(255,255,255,0.10);
}

h1, h2, h3, h4 {
  font-family: 'Manrope', 'Open Sans', sans-serif;
  color: var(--txt);
  margin: 0;
  letter-spacing: -0.02em;
  font-weight: 800;
  text-wrap: balance;
}
p { margin: 0; color: var(--muted); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ========== LIQUID GLASS UTILITIES ========== */
.glass {
  background: linear-gradient(135deg, rgba(255,255,255,0.55), rgba(255,255,255,0.25));
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    inset 0 -1px 0 rgba(11,113,161,0.08),
    0 8px 32px rgba(0,39,109,0.10);
}
.dark .glass {
  background: linear-gradient(135deg, rgba(20,40,80,0.55), rgba(15,26,51,0.35));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    inset 0 -1px 0 rgba(0,0,0,0.30),
    0 10px 40px rgba(0,0,0,0.45);
}
.glass-soft {
  background: linear-gradient(135deg, rgba(255,255,255,0.65), rgba(240,248,255,0.4));
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.7);
}

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all 360ms cubic-bezier(.2,.8,.2,1);
  padding: 18px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-header.scrolled {
  padding: 10px 0;
}
.site-header.scrolled .header-inner {
  background: linear-gradient(135deg, rgba(255,255,255,0.72), rgba(255,255,255,0.42));
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    inset 0 -1px 0 rgba(11,113,161,0.06),
    0 14px 40px rgba(0,39,109,0.14);
  border-radius: 999px;
}
.dark .site-header.scrolled .header-inner {
  background: linear-gradient(135deg, rgba(15,26,51,0.78), rgba(10,18,36,0.55));
  border: 1px solid rgba(255,255,255,0.10);
}
.header-inner {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 10px 18px 10px 24px;
  border-radius: 999px;
  transition: all 360ms cubic-bezier(.2,.8,.2,1);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo img { height: 36px; width: auto; }
.dark .logo img { filter: brightness(0) invert(1); }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav a {
  position: relative;
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--txt);
  border-radius: 999px;
  transition: all 200ms ease;
}
.nav a:hover {
  background: rgba(11,113,161,0.08);
  color: var(--azul);
}
.nav a.active {
  color: var(--azul);
}
.nav a.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 2px;
  background: var(--azul);
  border-radius: 2px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: all 240ms cubic-bezier(.2,.8,.2,1);
  white-space: nowrap;
}
.btn-primary {
  background: var(--azul);
  color: white;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    0 6px 18px -4px rgba(11,113,161,0.55);
}
.btn-primary:hover {
  background: var(--azul-deep);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    0 12px 28px -6px rgba(11,113,161,0.65);
}
.btn-ghost {
  background: rgba(11,113,161,0.08);
  color: var(--azul);
}
.btn-ghost:hover { background: rgba(11,113,161,0.16); }

.btn-glass {
  background: linear-gradient(135deg, rgba(255,255,255,0.5), rgba(255,255,255,0.2));
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.55);
  color: var(--azul-deep);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    0 6px 16px rgba(0,39,109,0.16);
}
.btn-glass:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.7), rgba(255,255,255,0.3));
  transform: translateY(-1px);
}

.menu-toggle { display: none; }

/* ========== HERO ========== */
.hero {
  padding: 110px 0 40px;
}
.hero-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 560px;
  background: var(--azul-deep);
  box-shadow: var(--shadow-2);
  isolation: isolate;
}
.hero-frame img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(95deg, rgba(0,39,109,0.92) 0%, rgba(11,113,161,0.78) 45%, rgba(11,113,161,0.20) 75%, rgba(0,39,109,0.10) 100%);
  z-index: 1;
}
.hero-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 0% 0%, rgba(0,189,255,0.25) 0%, transparent 50%);
  z-index: 1;
  mix-blend-mode: screen;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 72px 72px;
  max-width: 720px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ciano);
  box-shadow: 0 0 0 4px rgba(0,189,255,0.22);
}
.hero h1 {
  font-size: clamp(40px, 6.2vw, 76px);
  line-height: 0.98;
  color: white;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.hero h1 .accent {
  color: var(--ciano);
  font-style: italic;
  font-weight: 800;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  line-height: 1.5;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  position: absolute;
  right: 36px;
  bottom: 36px;
  z-index: 3;
  display: flex;
  gap: 14px;
  flex-direction: column;
  width: 280px;
}
.hero-stat {
  padding: 16px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.05));
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.22);
  color: white;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.3),
    0 10px 30px rgba(0,20,60,0.3);
}
.hero-stat .num {
  font-family: 'Manrope', sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  color: white;
}
.hero-stat .num .plus { color: var(--ciano); }
.hero-stat .lbl {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ========== SEGMENTOS ========== */
.segments {
  margin-top: 24px;
  position: relative;
  z-index: 4;
  padding-bottom: 80px;
}
.segments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.segment-card {
  padding: 28px 24px 24px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(245,250,255,0.6));
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 14px 40px -10px rgba(0,39,109,0.18);
  transition: all 280ms cubic-bezier(.2,.8,.2,1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.dark .segment-card {
  background: linear-gradient(135deg, rgba(20,40,80,0.5), rgba(15,26,51,0.3));
  border: 1px solid rgba(255,255,255,0.10);
}
.segment-card:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 30px 60px -15px rgba(0,39,109,0.30);
}
.segment-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: rgba(11,113,161,0.08);
  color: var(--azul);
  border: 1px solid rgba(11,113,161,0.14);
  box-shadow: none;
}
.segment-icon svg { width: 22px; height: 22px; stroke-width: 1.6; }
.segment-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  margin-bottom: 6px;
  letter-spacing: 0;
}
.segment-card .age {
  font-size: 12px;
  font-weight: 700;
  color: var(--azul);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.segment-card p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
}
.segment-card .arrow {
  position: absolute;
  top: 22px; right: 22px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(11,113,161,0.10);
  display: grid;
  place-items: center;
  color: var(--azul);
  transition: all 240ms ease;
}
.segment-card:hover .arrow {
  background: var(--azul);
  color: white;
  transform: rotate(-45deg);
}

/* ========== SECTION HEAD ========== */
.section { padding: 90px 0; }
.section-head {
  margin-bottom: 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--azul);
  margin-bottom: 12px;
}
.section-eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--azul);
}
.section h2 {
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 700px;
}
.section h2 .accent {
  color: var(--azul);
  font-style: italic;
  font-weight: 700;
}
.section-head .lead {
  max-width: 380px;
  font-size: 16px;
  line-height: 1.55;
}

/* ========== SOBRE ========== */
.about {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  position: relative;
}
.dark .about { background: linear-gradient(180deg, var(--bg) 0%, #0E1730 100%); }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.about-text h2 { margin-bottom: 24px; }
.about-text p {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 16px;
}
.about-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.pill {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(11,113,161,0.08);
  color: var(--azul);
  font-weight: 600;
  font-size: 13px;
  border: 1px solid rgba(11,113,161,0.15);
}
.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  background: linear-gradient(135deg, var(--azul-deep) 0%, var(--azul) 100%);
}
.about-visual img,
.about-visual video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-visual .video-poster {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 400ms ease;
}
.about-visual.playing .video-poster { opacity: 0; pointer-events: none; }
.about-visual .video-mask {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,39,109,0.05) 0%, rgba(0,39,109,0.55) 100%);
  pointer-events: none;
  transition: opacity 400ms ease;
}
.about-visual.playing .video-mask { opacity: 0; }
.about-visual .video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.55), rgba(255,255,255,0.22));
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.7);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 18px 40px rgba(0,0,0,0.35);
  transition: all 280ms cubic-bezier(.2,.8,.2,1);
  z-index: 2;
}
.about-visual .video-play:hover { transform: translate(-50%, -50%) scale(1.08); }
.about-visual .video-play svg { width: 28px; height: 28px; color: white; margin-left: 4px; }
.about-visual.playing .video-play { opacity: 0; pointer-events: none; }
.about-visual .video-eyebrow {
  position: absolute;
  top: 20px; left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.22);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}
.about-visual .video-eyebrow .live {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ciano);
  box-shadow: 0 0 0 4px rgba(0,189,255,0.3);
  animation: pulse 2s ease infinite;
}
.about-visual .badge {
  position: absolute;
  bottom: 20px; left: 20px;
  padding: 18px 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.62), rgba(255,255,255,0.32));
  backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-visual .badge .big {
  font-family: 'Manrope', sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  color: var(--azul-deep);
}
.about-visual .badge .lbl {
  font-size: 12px;
  font-weight: 600;
  color: var(--txt);
  max-width: 140px;
  line-height: 1.3;
}

/* ========== VIDEO CARROSSEL ========== */
.videos-section {
  padding: 90px 0;
  background: var(--branco);
  position: relative;
  overflow: hidden;
}
.dark .videos-section { background: var(--bg-2); }
.videos-section::before {
  content: '';
  position: absolute;
  top: -120px; left: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,189,255,0.18), transparent 70%);
  pointer-events: none;
}
.video-track-wrap {
  position: relative;
  margin-top: 12px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
}
.video-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll-x 50s linear infinite;
}
.videos-section:hover .video-track { animation-play-state: paused; }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.video-card {
  flex: 0 0 auto;
  width: 280px;
  aspect-ratio: 9/16;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 20px 40px -12px rgba(0,39,109,0.25);
  transition: transform 240ms ease;
}
.video-card:hover { transform: scale(1.03); }
.video-card .thumb {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.video-card .overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,39,109,0.0) 30%, rgba(0,39,109,0.85) 95%),
    radial-gradient(circle at 50% 50%, transparent 60%, rgba(0,0,0,0.2) 100%);
}
.video-card .meta {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  color: white;
}
.video-card .meta .tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0,189,255,0.85);
  color: var(--azul-deep);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.video-card .meta .title {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.video-card .play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.5), rgba(255,255,255,0.2));
  backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.6);
  display: grid;
  place-items: center;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    0 12px 30px rgba(0,0,0,0.3);
  transition: all 240ms ease;
}
.video-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: linear-gradient(135deg, rgba(255,255,255,0.7), rgba(255,255,255,0.4));
}
.video-card .play-btn svg { width: 22px; height: 22px; color: white; margin-left: 3px; }
.video-card .live-dot {
  position: absolute;
  top: 14px; right: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.video-card .live-dot::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ciano);
  box-shadow: 0 0 0 3px rgba(0,189,255,0.3);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ========== PINTEREST ========== */
.gallery-section {
  padding: 90px 0 110px;
  background: linear-gradient(180deg, var(--branco) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.dark .gallery-section { background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%); }
.pinterest {
  columns: 5;
  column-gap: 16px;
}
.pin {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-2);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 14px 30px -12px rgba(0,39,109,0.18);
  position: relative;
  cursor: pointer;
  transition: all 320ms cubic-bezier(.2,.8,.2,1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.pin .pin-label {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 18px;
  opacity: 0.85;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  z-index: 1;
  transition: opacity 280ms ease;
}
.pin:hover .pin-label { opacity: 1; transform: scale(1.04); }
.pin .pin-shine {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(255,255,255,0.22) 0%, transparent 60%),
    radial-gradient(80% 60% at 100% 100%, rgba(0,0,0,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.pin:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 28px 50px -16px rgba(0,39,109,0.30);
}
.pin img {
  width: 100%;
  display: block;
  height: auto;
}
.pin .pin-tag {
  position: absolute;
  top: 12px; left: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(255,255,255,0.3));
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.6);
  color: var(--azul-deep);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-6px);
  transition: all 280ms ease;
}
.pin:hover .pin-tag { opacity: 1; transform: translateY(0); }
.pin .pin-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,39,109,0.7));
  opacity: 0;
  transition: opacity 280ms ease;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.pin:hover .pin-overlay { opacity: 1; }
.pin .pin-overlay span {
  font-family: 'Manrope', sans-serif;
  color: white;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
}

/* ========== EXTRACURRICULAR ========== */
.extra-section {
  padding: 100px 0;
  background: var(--bg-2);
  position: relative;
}
.dark .extra-section { background: #0C1530; }
.extra-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.extra-grid-3 { grid-template-columns: repeat(3, 1fr); gap: 20px; }
.extra-card-lg { padding: 32px 28px; }
.extra-card-lg .icon { width: 52px; height: 52px; }
.extra-card-lg h4 { font-size: 20px; }
.extra-card-lg .list { font-size: 14px; line-height: 1.7; }

/* ========== PROJETOS E ATIVIDADES ========== */
.projects-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--branco) 0%, var(--bg) 100%);
  position: relative;
}
.dark .projects-section { background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%); }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.project-card {
  border-radius: 22px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: all 280ms cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 4px 14px -6px rgba(0,39,109,0.10);
}
.dark .project-card { background: rgba(255,255,255,0.04); }
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px -16px rgba(0,39,109,0.25);
}
.project-img {
  aspect-ratio: 4/3;
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.project-tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(0,0,0,0.30);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.project-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.project-body h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
  color: var(--txt);
}
.project-body p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
  flex: 1;
}
.project-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--azul);
  color: var(--azul);
  font-family: 'Manrope', sans-serif;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
  width: fit-content;
  transition: all 200ms ease;
}
.project-link:hover {
  background: var(--azul);
  color: white;
}
.extra-card {
  padding: 22px 20px;
  border-radius: 18px;
  background: white;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 280ms ease;
  position: relative;
  overflow: hidden;
}
.dark .extra-card { background: rgba(255,255,255,0.04); }
.extra-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -10px rgba(0,39,109,0.20);
  border-color: var(--azul);
}
.extra-card .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(11,113,161,0.08);
  color: var(--azul);
}
.extra-card .icon svg { width: 22px; height: 22px; }
.extra-card h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}
.extra-card .list {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

/* ========== DEPOIMENTOS ========== */
.testimonials {
  padding: 100px 0;
  background: var(--branco);
}
.dark .testimonials { background: var(--bg-2); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial {
  padding: 32px 28px;
  border-radius: 22px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--branco) 100%);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.dark .testimonial { background: rgba(255,255,255,0.03); }
.testimonial::before {
  content: '"';
  position: absolute;
  top: 12px; right: 24px;
  font-family: 'Manrope', sans-serif;
  font-size: 80px;
  line-height: 1;
  color: var(--azul);
  opacity: 0.18;
}
.testimonial p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--txt);
}
.testimonial .author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.testimonial .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ciano), var(--azul));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  font-family: 'Manrope';
}
.testimonial .author-meta { display: flex; flex-direction: column; }
.testimonial .author-meta .name { font-weight: 700; font-size: 14px; color: var(--txt); }
.testimonial .author-meta .role { font-size: 12px; color: var(--muted); }

/* ========== INSTAGRAM ========== */
.insta-section {
  padding: 100px 0 60px;
  background: var(--bg);
  position: relative;
}
.insta-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.insta-handle {
  display: flex;
  align-items: center;
  gap: 16px;
}
.insta-handle .avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FCAF45 0%, #F77737 25%, #E1306C 50%, #C13584 75%, #833AB4 100%);
  padding: 3px;
  flex-shrink: 0;
}
.insta-handle .avatar-inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: white;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.dark .insta-handle .avatar-inner { background: var(--bg-2); }
.insta-handle .avatar-inner img { width: 70%; height: 70%; object-fit: contain; }
.insta-handle h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.insta-handle h3 .check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--ciano);
  display: inline-grid;
  place-items: center;
  color: white;
}
.insta-handle h3 .check svg { width: 11px; height: 11px; }
.insta-handle .meta {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 14px;
}
.insta-handle .meta strong { color: var(--txt); font-weight: 700; }

.insta-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}
.insta-select {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 11px 40px 11px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,0.75), rgba(255,255,255,0.4));
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    0 8px 24px rgba(0,39,109,0.10);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--azul-deep);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  min-width: 240px;
}
.dark .insta-select {
  background: linear-gradient(135deg, rgba(20,40,80,0.55), rgba(15,26,51,0.35));
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--txt);
}
.insta-select-wrap {
  position: relative;
  display: inline-block;
}
.insta-select-wrap::after {
  content: '';
  position: absolute;
  right: 16px; top: 50%;
  width: 8px; height: 8px;
  border-right: 2px solid var(--azul);
  border-bottom: 2px solid var(--azul);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.insta-tile {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: all 320ms cubic-bezier(.2,.8,.2,1);
  color: white;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  box-shadow: 0 10px 30px -10px rgba(0,39,109,0.30);
}
.insta-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px -14px rgba(0,39,109,0.45);
}
.insta-tile .shine {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(110% 80% at 10% 0%, rgba(255,255,255,0.30) 0%, transparent 55%),
    radial-gradient(90% 60% at 100% 100%, rgba(0,0,0,0.30) 0%, transparent 60%);
  pointer-events: none;
}
.insta-tile .caption {
  position: relative;
  z-index: 1;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  letter-spacing: 0;
  max-width: 90%;
}
.insta-tile .badge-corner {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  width: 30px; height: 30px;
  border-radius: 999px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  color: white;
}
.insta-tile .badge-corner svg { width: 14px; height: 14px; }
.insta-tile .likes {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px 4px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.insta-tile .likes svg { width: 11px; height: 11px; }

/* ========== UNIDADES ========== */
.units {
  padding: 100px 0;
  background: var(--bg);
}
.units-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.unit {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  border-radius: 24px;
  overflow: hidden;
  background: var(--branco);
  border: 1px solid var(--line);
  transition: all 280ms ease;
}
.dark .unit { background: rgba(255,255,255,0.04); }
.unit:hover { box-shadow: 0 20px 40px -12px rgba(0,39,109,0.18); transform: translateY(-3px); }
.unit-img {
  background-size: cover;
  background-position: center;
  min-height: 220px;
  position: relative;
}
.unit-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,39,109,0.4), transparent 60%);
}
.unit-body {
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.unit-body .label {
  font-size: 11px;
  font-weight: 700;
  color: var(--azul);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.unit-body h4 {
  font-family: 'Manrope';
  font-size: 19px;
  font-weight: 800;
  margin: 0 0 6px;
}
.unit-body .seg {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
  line-height: 1.5;
}
.unit-body .addr {
  font-size: 13.5px;
  color: var(--txt);
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.unit-body .phone {
  font-family: 'Manrope';
  font-weight: 700;
  color: var(--azul);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}

/* ========== CTA ========== */
.cta {
  padding: 100px 0;
  background: var(--bg);
}
.cta-frame {
  position: relative;
  border-radius: var(--r-lg);
  padding: 80px 72px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--azul-deep) 0%, var(--azul) 60%, #1591C7 100%);
  color: white;
  box-shadow: var(--shadow-2);
}
.cta-frame::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 70%; height: 200%;
  background: radial-gradient(circle, rgba(0,189,255,0.4) 0%, transparent 60%);
  pointer-events: none;
}
.cta-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 90%, rgba(255,255,255,0.08) 0%, transparent 25%);
  pointer-events: none;
}
.cta-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  z-index: 2;
}
.cta-content h2 {
  color: white;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  max-width: 600px;
}
.cta-content h2 .accent {
  color: var(--ciano);
  font-style: italic;
}
.cta-content .sub {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  margin-top: 14px;
  max-width: 480px;
}
.cta-actions { display: flex; gap: 12px; flex-shrink: 0; flex-direction: column; align-items: stretch; }

/* ========== FOOTER ========== */
.footer {
  background: var(--azul-deep);
  color: white;
  padding: 70px 0 30px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,189,255,0.18), transparent 70%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  position: relative;
}
.footer-brand img { height: 40px; filter: brightness(0) invert(1); margin-bottom: 18px; }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 14px; max-width: 320px; }
.footer h5 {
  font-family: 'Manrope';
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ciano);
  margin-bottom: 18px;
  font-weight: 700;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  transition: color 200ms ease;
}
.footer ul a:hover { color: white; }
.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  position: relative;
}
.socials { display: flex; gap: 8px; }
.socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  transition: all 200ms ease;
}
.socials a:hover { background: var(--ciano); color: var(--azul-deep); }
.socials svg { width: 16px; height: 16px; }

/* ========== TWEAKS ========== */
.tweaks-panel {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 280px;
  z-index: 60;
  border-radius: 22px;
  padding: 18px 20px 20px;
  background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(255,255,255,0.55));
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 24px 60px rgba(0,39,109,0.25);
  display: none;
}
.dark .tweaks-panel {
  background: linear-gradient(135deg, rgba(15,26,51,0.85), rgba(10,18,36,0.6));
  border: 1px solid rgba(255,255,255,0.10);
}
.tweaks-panel.open { display: block; }
.tweaks-panel h6 {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--azul);
  margin: 0 0 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tweaks-panel h6 .close {
  cursor: pointer;
  color: var(--muted);
  font-size: 16px;
  letter-spacing: 0;
}
.tweaks-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-top: 1px solid var(--line);
  gap: 12px;
}
.tweaks-row:first-of-type { border-top: none; }
.tweaks-row label { font-size: 13px; font-weight: 600; color: var(--txt); }
.seg-ctrl {
  display: flex;
  background: rgba(11,113,161,0.08);
  border-radius: 999px;
  padding: 3px;
}
.seg-ctrl button {
  border: none; background: none;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  font-family: 'Manrope';
}
.seg-ctrl button.active {
  background: var(--azul);
  color: white;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .hero-content { padding: 60px 40px; }
  .hero-stats { display: none; }
  .segments-grid { grid-template-columns: repeat(2, 1fr); }
  .pinterest { columns: 3; }
  .insta-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .extra-grid { grid-template-columns: repeat(2, 1fr); }
  .extra-grid-3 { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .units-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .menu-toggle {
    display: grid;
    place-items: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(11,113,161,0.10);
    border: none;
    cursor: pointer;
    color: var(--azul);
  }
  .cta-content { flex-direction: column; align-items: flex-start; }
  .cta-frame { padding: 56px 40px; }
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .segments-grid { grid-template-columns: 1fr; }
  .extra-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .pinterest { columns: 2; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-head { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 96px; }
  .hero-content { padding: 44px 28px; }
  .hero-frame { min-height: 480px; }
  .section { padding: 64px 0; }
  .video-card { width: 220px; }
  .tweaks-panel { width: calc(100% - 32px); right: 16px; bottom: 16px; }
  .unit { grid-template-columns: 1fr; }
  .unit-img { min-height: 160px; }
}
