/* ════════════════════════════════
   FONTES LOCAIS — Montserrat
════════════════════════════════ */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300 800;
  font-display: optional;
  src: url('../fonts/montserrat-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 300 400;
  font-display: optional;
  src: url('../fonts/montserrat-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ════════════════════════════════
   RESET & BASE
════════════════════════════════ */
html { scrollbar-gutter: stable; font-size: 18px; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colors */
  --black:      #2d2d2d;
  --dark:       #111111;
  --dark-2:     #181818;
  --mid:        #232323;
  --border:     rgba(255,255,255,0.07);
  --gray:       #4a4a4a;
  --gray-2:     #6b6b6b;
  --muted:      #9a9a9a;
  --off-white:  #f0ede8;
  --cream:      #e8e3db;
  --white:      #ffffff;
  --red:        #c0392b;
  --red-2:      #a93226;
  --red-glow:   rgba(192,57,43,0.18);
  --red-subtle: rgba(192,57,43,0.08);

  /* Typography */
  --font: 'Montserrat', system-ui, sans-serif;

  /* Type scale — Major Third 1.25, base html */
  --text-2xs:  0.64rem;
  --text-xs:   0.8rem;
  --text-sm:   0.9rem;
  --text-base: 1rem;
  --text-md:   1.25rem;
  --text-lg:   1.563rem;
  --text-xl:   1.953rem;
  --text-2xl:  2.441rem;
  --text-3xl:  3.052rem;
  --text-4xl:  3.815rem;

  --ls: -0.05em;
  --lh: 1.5;

  /* 8px grid */
  --s1: 8px;
  --s2: 16px;
  --s3: 24px;
  --s4: 32px;
  --s5: 40px;
  --s6: 48px;
  --s7: 56px;
  --s8: 64px;
  --s10: 80px;
  --s12: 96px;
  --s16: 128px;
  --s20: 160px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  font-size: 1rem; /* herda 20px do html */
  letter-spacing: var(--ls);
  line-height: var(--lh);
  text-wrap: pretty;
}

/* ════════════════════════════════
   NAV
════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s3) var(--s10);
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.4s ease, background 0.4s ease;
}
nav.scrolled {
  padding: var(--s2) var(--s10);
  background: rgba(8,8,8,0.98);
}

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

.nav-links {
  display: flex;
  gap: var(--s6);
  list-style: none;
}
.nav-links a {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--red);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: var(--s1) calc(var(--s2) + var(--s1));
  text-decoration: none;
  transition: background 0.25s;
}
.nav-cta:hover { background: var(--red-2); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ════════════════════════════════
   HERO
════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--s16) + var(--s8)) var(--s10) var(--s16);
  background: var(--black);
}

/* Grid lines bg */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

/* Glow orb */
.hero-glow {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 60vw;
  height: 80vh;
  background: radial-gradient(ellipse at 60% 30%,
    rgba(192,57,43,0.22) 0%,
    rgba(192,57,43,0.08) 35%,
    transparent 70%);
  pointer-events: none;
}

/* Right side visual panel */
.hero-visual-panel {
  position: absolute;
  top: 0; right: 0;
  width: 48%;
  height: 100%;
  overflow: hidden;
}
.hero-visual-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--black) 0%, transparent 40%),
              linear-gradient(to top, var(--black) 0%, transparent 30%);
  z-index: 2;
}
.hero-visual-inner {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #0d0d0d 0%, #1a0a08 40%, #2a0c08 70%, #1a0505 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* Scales of justice decorative */
.hero-scales-svg {
  width: 72%;
  max-width: 500px;
  opacity: 0.07;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* Thin vertical accent line */
.hero-accent-line {
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--red) 40%, var(--red) 60%, transparent);
  opacity: 0.6;
  z-index: 3;
}

/* Stat strip on right panel */
.hero-panel-stats {
  position: absolute;
  z-index: 4;
  right: var(--s6);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: var(--s6);
}
.hero-panel-stat {
  text-align: right;
}
.hero-panel-stat-num {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}
.hero-panel-stat-label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: var(--s1);
}
.hero-panel-stat-div {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-top: var(--s3);
}

/* Left content */
.hero-content {
  position: relative;
  z-index: 5;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  background: var(--red-subtle);
  border: 1px solid rgba(192,57,43,0.25);
  padding: var(--s1) var(--s2);
  margin-bottom: var(--s4);
  opacity: 0;
  animation: fadeUp 0.7s ease 0.1s forwards;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
}
.hero-badge span {
  font-size: var(--text-2xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}

h1.hero-title {
  font-size: clamp(2.4rem, 5.5vw, var(--text-4xl));
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: var(--ls);
  color: var(--white);
  margin-bottom: var(--s3);
  opacity: 0;
  animation: fadeUp 0.7s ease 0.25s forwards;
}
h1.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
}
h1.hero-title .accent {
  color: var(--red);
}

.hero-divider {
  width: var(--s8);
  height: 2px;
  background: var(--red);
  margin-bottom: var(--s3);
  opacity: 0;
  animation: fadeUp 0.7s ease 0.35s forwards;
}

.hero-desc {
  font-size: clamp(1rem, 1.2vw, var(--text-md));
  font-weight: 300;
  color: var(--muted);
  line-height: var(--lh);
  max-width: 520px;
  letter-spacing: var(--ls);
  margin-bottom: var(--s6);
  opacity: 0;
  animation: fadeUp 0.7s ease 0.45s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex-wrap: wrap;
  margin-bottom: var(--s10);
  opacity: 0;
  animation: fadeUp 0.7s ease 0.55s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: var(--s2) var(--s4);
  text-decoration: none;
  border: 1px solid var(--red);
  transition: all 0.3s;
}
.btn-primary:hover {
  background: transparent;
  color: var(--red);
}
.btn-primary svg { flex-shrink: 0; transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font);
  font-weight: 500;
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  padding: var(--s2) var(--s4);
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

/* 3 features below CTA */
.hero-features {
  display: flex;
  gap: var(--s8);
  opacity: 0;
  animation: fadeUp 0.7s ease 0.65s forwards;
}
.hero-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
}
.hero-feature-icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-subtle);
  border: 1px solid rgba(192,57,43,0.2);
  color: var(--red);
  margin-top: 2px;
}
.hero-feature-icon svg { width: 14px; height: 14px; }
.hero-feature-title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--white);
  letter-spacing: var(--ls);
  margin-bottom: 2px;
}
.hero-feature-desc {
  font-size: var(--text-s);
  font-weight: 300;
  color: var(--muted);
  letter-spacing: var(--ls);
  line-height: var(--lh);
}

/* Bottom bar */
.hero-bottom-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 6;
  display: flex;
  align-items: stretch;
  border-top: 1px solid var(--border);
  height: var(--s10);
}
.hero-bottom-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  padding: 0 var(--s3);
  border-right: 1px solid var(--border);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.25s, background 0.25s;
}
.hero-bottom-item:last-child { border-right: none; }
.hero-bottom-item:hover { color: var(--white); background: rgba(255,255,255,0.02); }
.hero-bottom-item svg { opacity: 0.5; flex-shrink: 0; }
.hero-bottom-item:hover svg { opacity: 1; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════
   MARQUEE STRIP
════════════════════════════════ */
.strip {
  background: var(--red);
  padding: calc(var(--s1) + 4px) 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.strip-track {
  display: flex;
  gap: var(--s6);
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.strip-item {
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  flex-shrink: 0;
}
.strip-sep {
  color: rgba(255,255,255,0.35);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════
   SECTION COMMONS
════════════════════════════════ */
.section-wrap {
  max-width: 1920px;
  margin: 0 auto;
  padding: var(--s16) var(--s10);
}

.label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--s2);
}

h2.section-title {
  font-size: clamp(1.5rem, 3.2vw, var(--text-2xl));
  font-weight: 800;
  letter-spacing: var(--ls);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: var(--s3);
}
h2.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
}
h2.section-title.dark {
  color: var(--dark);
}
h2.section-title.dark em {
  color: var(--gray-2);
}

.section-desc {
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--muted);
  line-height: var(--lh);
  letter-spacing: var(--ls);
}
.section-desc.dark {
  color: var(--gray-2);
}

/* ════════════════════════════════
   SOBRE
════════════════════════════════ */
#sobre {
  background: var(--off-white);
  padding: 0;
}
.sobre-wrap {
  max-width: 1920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  min-height: 640px;
}
.sobre-left {
  padding: var(--s16) var(--s10);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sobre-left .section-title {
  margin-bottom: var(--s4);
}
.sobre-body {
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--gray-2);
  line-height: var(--lh);
  letter-spacing: var(--ls);
  margin-bottom: var(--s3);
}
.sobre-quote {
  border-left: 3px solid var(--red);
  padding-left: var(--s3);
  margin: var(--s5) 0;
}
.sobre-quote p {
  font-size: var(--text-md);
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  line-height: var(--lh);
  letter-spacing: var(--ls);
}

.sobre-right {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--s8);
}
.sobre-founder-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 0;
}

.sobre-right-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(192,57,43,0.10) 0%, transparent 50%),
    linear-gradient(to bottom,
      transparent               0%,
      transparent              48%,
      rgba(10,10,10,0.55)      65%,
      rgba(10,10,10,0.95)      82%,
      rgba(10,10,10,0.98)     100%);
}
.sobre-right-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
}
.sobre-year {
  position: absolute;
  top: var(--s6);
  left: var(--s8);
  font-size: 9rem;
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  letter-spacing: -0.05em;
  user-select: none;
}
.sobre-card-content {
  position: relative;
  z-index: 2;
}
.sobre-card-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(192,57,43,0.35);
  padding: 4px var(--s2);
  margin-bottom: var(--s3);
}
.sobre-card-title {
  font-size: var(--text-xl);
  font-weight: 300;
  color: var(--white);
  line-height: var(--lh);
  letter-spacing: var(--ls);
  margin-bottom: var(--s3);
}
.sobre-card-line {
  width: var(--s5);
  height: 2px;
  background: var(--red);
  margin-bottom: var(--s3);
}
.sobre-card-body {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--muted);
  line-height: var(--lh);
  letter-spacing: var(--ls);
  margin-bottom: var(--s4);
  font-style: italic;
}
.sobre-founder {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}

/* ════════════════════════════════
   AREAS
════════════════════════════════ */
#areas {
  background: var(--black);
  padding: 0;
}
.areas-wrap {
  max-width: 1920px;
  margin: 0 auto;
  padding: var(--s16) var(--s10);
}
.areas-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s8);
  margin-bottom: var(--s10);
}
.areas-header-left { max-width: 600px; }
.areas-header .section-desc{ max-width: 580px; }


.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.area-card {
  background: var(--dark);
  padding: var(--s8);
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
  cursor: default;
}
.area-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--s6);
}
.area-number {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  letter-spacing: -0.05em;
  font-style: italic;
}
.area-icon-wrap {
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  transition: background 0.35s, border-color 0.35s;
}
.area-icon-wrap svg { width: 20px; height: 20px; }

h3.area-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--s3);
  letter-spacing: var(--ls);
  line-height: 1.2;
}
.area-desc {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--muted);
  line-height: var(--lh);
  margin-bottom: var(--s6);
  letter-spacing: var(--ls);
}
.area-bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--red);
  transition: width 0.5s ease;
}
.area-tags { display: flex; flex-wrap: wrap; gap: var(--s1); }
.area-tag {
  font-size: var(--text-2xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(192,57,43,0.25);
  padding: 3px var(--s1);
}
.area-card:hover { background: var(--dark-2); }
.area-card:hover .area-bar { width: 100%; }
.area-card:hover .area-icon-wrap {
  background: var(--red-subtle);
  border-color: rgba(192,57,43,0.3);
}

/* ════════════════════════════════
   INSS
════════════════════════════════ */
#inss {
  background: var(--dark-2);
  padding: 0;
}
.inss-wrap {
  max-width: 1920px;
  margin: 0 auto;
  padding: var(--s16) var(--s10);
}
.inss-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--s12);
}
.inss-header .section-desc { margin-top: var(--s3); }

.inss-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  max-width: 1100px;
  margin: 0 auto;
}
.inss-item {
  background: var(--dark-2);
  padding: var(--s6);
  text-align: center;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.inss-item:hover { background: rgba(192,57,43,0.07); }
.inss-icon {
  width: var(--s8);
  height: var(--s8);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin: 0 auto var(--s3);
  transition: border-color 0.3s;
}
.inss-icon svg { width: 22px; height: 22px; }
.inss-item:hover .inss-icon { border-color: rgba(192,57,43,0.4); }
.inss-item-title {
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--s1);
  letter-spacing: var(--ls);
  line-height: var(--lh);
}
.inss-item-desc {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--muted);
  line-height: var(--lh);
  letter-spacing: var(--ls);
}

/* ════════════════════════════════
   CTA BAND
════════════════════════════════ */
.cta-band {
  background: var(--red);
  padding: var(--s12) var(--s10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s6);
  flex-wrap: wrap;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  right: -5%;
  top: -50%;
  width: 40%;
  height: 200%;
  background: rgba(255,255,255,0.04);
  transform: skewX(-10deg);
  pointer-events: none;
}
.cta-band-text h2 {
  font-size: clamp(1.5rem, 3.5vw, var(--text-2xl));
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--s2);
  letter-spacing: var(--ls);
}
.cta-band-text p {
  font-size: var(--text-base);
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  letter-spacing: var(--ls);
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--white);
  padding: var(--s2) var(--s5);
  text-decoration: none;
  border: 1px solid var(--white);
  transition: all 0.3s;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
.btn-white:hover { background: transparent; color: var(--white); }

/* ════════════════════════════════
   CONTATO
════════════════════════════════ */
#contato {
  background: var(--black);
  padding: 0;
}
.contato-wrap {
  max-width: 1920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: var(--s16) var(--s10);
  gap: var(--s16);
}

.contato-info .label { margin-bottom: var(--s2); }
.contato-info .section-title { margin-bottom: var(--s6); }

.info-block { margin-bottom: var(--s5); }
.info-block-label {
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--red);
  margin-bottom: var(--s1);
}
.info-block-value {
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--muted);
  line-height: var(--lh);
  text-decoration: none;
  letter-spacing: var(--ls);
  transition: color 0.25s;
  display: block;
}
a.info-block-value:hover { color: var(--white); }

.social-links {
  display: flex;
  gap: var(--s2);
  margin-top: var(--s6);
  flex-wrap: wrap;
}
.social-link {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gray-2);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: var(--s1) var(--s3);
  transition: all 0.25s;
}
.social-link:hover { color: var(--white); border-color: rgba(192,57,43,0.5); }

/* Form */
.contato-form .section-title { margin-bottom: var(--s6); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s2);
}
.form-group { margin-bottom: var(--s2); }
.form-group label {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gray-2);
  margin-bottom: var(--s1);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--white);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: var(--s2) var(--s3);
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
  appearance: none;
  letter-spacing: var(--ls);
}
.form-group select { cursor: pointer; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--gray-2);
  margin-bottom: var(--s3);
  letter-spacing: var(--ls);
}

.btn-submit {
  font-family: var(--font);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  border: 1px solid var(--red);
  padding: var(--s2) var(--s5);
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  margin-top: var(--s1);
}
.btn-submit:hover { background: transparent; }

.form-success {
  display: none;
  background: rgba(103, 238, 173, 0.1);
  border: 1px solid rgba(58, 192, 43, 0.4);
  padding: var(--s3);
  color: var(--off-white);
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: var(--lh);
  margin-top: var(--s2);
  letter-spacing: var(--ls);
}

.form-error {
  display: none;
  background: rgba(192,57,43,0.15);
  border: 1px solid rgba(192,57,43,0.6);
  padding: var(--s3);
  color: #ff6b6b;
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: var(--lh);
  margin-top: var(--s2);
  letter-spacing: var(--ls);
}

/* ════════════════════════════════
   INSTAGRAM
════════════════════════════════ */
#instagram {
  background: var(--dark-2);
  padding: var(--s10) 0;
}

.insta-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s5);
  display: flex;
  flex-direction: column;
  gap: var(--s6);
}

.insta-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s3);
}

.insta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.9;
}

.insta-eyebrow svg {
  flex-shrink: 0;
}

.insta-header .section-title {
  margin-bottom: 0;
}

.insta-feed {
  width: 100%;
}

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
footer {
  background: #050505;
  padding: var(--s3) var(--s10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: var(--s2);
  max-width: 1920px;
  margin: 0 auto;
}
footer img { height: 28px; width: auto; opacity: 0.5; }
.footer-text {
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  color: var(--muted); /* era --gray (#4a4a4a, contraste insuficiente); --muted = #9a9a9a = 7.2:1 ✓ */
  font-weight: 300;
}
.footer-links {
  display: flex;
  gap: var(--s5);
  list-style: none;
}
.footer-links a {
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted); /* era --gray (#4a4a4a, contraste insuficiente); --muted = #9a9a9a = 7.2:1 ✓ */
  text-decoration: none;
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--off-white); }

/* ════════════════════════════════
   WHATSAPP FLOAT
════════════════════════════════ */
#waFloatLink {
  position: fixed;
  bottom: var(--s4);
  right: var(--s4);
  z-index: 90;
  display: block;
  text-decoration: none;
  transition: transform 0.3s ease;
}
#waFloatLink:hover {
  transform: translateY(-3px) scale(1.05);
}
#waLottieContainer {
  width: 80px;
  height: 80px;
}

/* ════════════════════════════════
   SCROLL REVEAL
════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

@media (min-width: 1440px) {
  .sobre-wrap { min-height: 800px; }
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1280px) {
  nav, .section-wrap, .areas-wrap, .inss-wrap, .cta-band,
  .contato-wrap, footer {
    padding-left: var(--s8);
    padding-right: var(--s8);
  }
  #hero { padding-left: var(--s8); padding-right: var(--s8); }
  .sobre-left { padding: var(--s12) var(--s8); }
  .sobre-right { padding: var(--s8); }
  .hero-visual-panel { width: 44%; }
  .hero-panel-stats { right: var(--s3); gap: var(--s5); }
}

@media (max-width: 1024px) {
  .sobre-wrap { grid-template-columns: 1fr; min-height: auto; }
  .sobre-right { min-height: 520px; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .inss-grid { grid-template-columns: repeat(2, 1fr); }
  .contato-wrap { grid-template-columns: 1fr; gap: var(--s12); }
  .hero-visual-panel { display: none; }
  .hero-glow { right: -20%; }
  .hero-features { gap: var(--s5); }
}

@media (max-width: 768px) {
  nav { padding: var(--s2) var(--s3); }
  nav.scrolled { padding: var(--s1) var(--s3); }
  .nav-links, .nav-cta { display: none; }

  /* Remove backdrop-filter ao abrir menu: evita stacking context que quebra position:fixed filho */
  nav.nav-open {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(8,8,8,0.99);
    justify-content: center;
    align-items: center;
    gap: var(--s5);
    z-index: 1001; /* acima do nav (1000) */
  }
  .nav-links.open a {
    font-size: var(--text-lg);
    letter-spacing: 0.12em;
    color: var(--white);
  }
  .nav-links.open a::after { display: none; }
  .hamburger { display: flex; z-index: 1002; position: relative; }

  #hero { padding: calc(var(--s16)) var(--s3) var(--s16); }
  .hero-bottom-bar { display: none; }

  /* Botões full-width respeitando padding lateral */
  .hero-actions {
    flex-direction: column;
    gap: var(--s2);
    width: 100%;
  }
  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }
  /* inss margin mobile */
  .inss-header { margin-bottom: 12px }
  /*inss-item padding mobile*/
  .inss-item { padding: var(--s4); }

  /* Features empilhadas — largura total, igual aos botões */
  .hero-features {
    flex-direction: column;
    gap: var(--s2);
  }
  .hero-feature {
    flex-direction: row;
    align-items: center;
    gap: var(--s3);
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    padding: var(--s2) var(--s3);
  }
  .hero-feature-icon {
    flex-shrink: 0;
    margin-top: 0;
  }
  .hero-feature-title {
    font-size: var(--text-base);
  }
  .hero-feature-desc {
    font-size: var(--text-sm);
    line-height: 1.4;
  }

  .section-wrap, .areas-wrap, .inss-wrap { padding: var(--s10) var(--s3); }
  .cta-band { padding: var(--s8) var(--s3); }
  .contato-wrap { padding: var(--s10) var(--s3); }
  .sobre-left { padding: var(--s10) var(--s3); }
  .sobre-right { padding: var(--s6); }
  footer { padding: var(--s3) var(--s3); flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .areas-grid {
    grid-template-columns: 1fr;
    gap: var(--s2);
    background: transparent;
  }
  .area-card {
    padding: var(--s4);
  }
  .area-card-top {
    margin-bottom: var(--s3);
  }
  h3.area-title {
    font-size: var(--text-lg);
    margin-bottom: var(--s2);
  }
  .area-desc {
    font-size: var(--text-sm);
    margin-bottom: var(--s3);
  }
  .inss-grid { grid-template-columns: 1fr; }
  .areas-header { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .strip { padding: var(--s1) 0; }
  
  /* Card com foto Dr Genori*/
  .sobre-card-content{
    padding-top: 13rem;
  }
  .sobre-card-tag{
    position: absolute;
    top: 2%;
    left: 0;
    font-size: var(--text-2xs);  
  }
}

@media (max-width: 480px) {
  h1.hero-title { font-size: 2.2rem; }
  h2.section-title { font-size: 1.7rem; }
  .sobre-card-title { font-size: var(--text-lg); }

}