/* ═══════════════════════════════════════════
   NILMA COELHO — v4
   Paleta: branco / ardósia / vinho
   Display: Fraunces · Body: Inter
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,700;0,9..144,900;1,9..144,300;1,9..144,400;1,9..144,700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --white:      #FAFAFA;
  --off:        #F2F1EF;
  --slate:      #1C2028;
  --slate2:     #252B36;
  --slate3:     #2F3749;
  --blue:       #8B1A1A;
  --blue-lt:    #B02626;
  --blue-dim:   rgba(139,26,26,0.08);
  --blue-line:  rgba(139,26,26,0.3);
  --mid:        #6B7280;
  --rule:       rgba(28,32,40,0.1);
  --rule-lt:    rgba(28,32,40,0.06);
  --display:    'Fraunces', serif;
  --body:       'Inter', sans-serif;
  --nav-h:      64px;
  /* ── Padding horizontal padrão ── */
  --px:         clamp(20px, 5%, 80px);
}

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

body {
  background: var(--white);
  color: var(--slate);
  font-family: var(--body);
  font-size: 19px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 var(--px);
  background: rgba(250,250,250,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow 0.3s;
}
nav.scrolled {
  box-shadow: 0 4px 24px rgba(28,32,40,0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: auto;
}
.nav-logo-mark {
  width: 32px; height: 32px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.nav-logo-name {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.nav-logo-sub {
  font-size: 0.5rem;
  letter-spacing: 0.16em;
  color: var(--mid);
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  margin-right: 24px;
}
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: var(--mid);
  text-decoration: none;
  padding: 8px 18px;
  display: block;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--slate); }
.nav-links a.active { color: var(--slate); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 18px; right: 18px;
  height: 1.5px;
  background: var(--blue);
  border-radius: 2px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: var(--blue);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.nav-cta:hover {
  background: var(--blue-lt);
  box-shadow: 0 4px 20px var(--blue-line);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 12px;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--slate);
  transition: all 0.3s;
}

/* ─── SECTIONS ─── */
section {
  display: none;
  min-height: 100vh;
  padding-top: var(--nav-h);
}
section.active { display: block; }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: transparent;
}

/* Animated horizontal accent line */
.hero-rule {
  width: 0;
  height: 2px;
  background: var(--blue);
  position: absolute;
  top: 0; left: 0;
  animation: rule-expand 1s cubic-bezier(0.25,1,0.5,1) both 0.3s;
}
@keyframes rule-expand {
  from { width: 0; }
  to   { width: 100%; }
}

.hero-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px var(--px) 64px;
  max-width: calc(900px + var(--px) * 2);
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 36px;
  animation: fade-up 0.7s ease both 0.45s;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 20px; height: 1.5px;
  background: var(--blue);
  border-radius: 2px;
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4.0vw, 4.0rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--slate);
  margin-bottom: 40px;
  animation: fade-up 0.7s ease both 0.55s;
}
.hero-title strong {
  font-weight: 700;
  display: block;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--blue);
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  animation: fade-up 0.7s ease both 0.68s;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}

.hero-desc {
  font-size: 0.92rem;
  color: var(--mid);
  max-width: 400px;
  line-height: 1.85;
  font-weight: 300;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; flex-shrink: 0; }

/* Stat strip */
.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--rule);
  animation: fade-up 0.7s ease both 0.75s;
}
.stat-item {
  padding: 28px 36px 24px;
  border-right: 1px solid var(--rule);
  flex: 1;
  transition: background 0.25s;
}
.stat-item:hover { background: var(--off); }
.stat-item:first-child { padding-left: var(--px); }
.stat-item:last-child  { border-right: none; }
.stat-num {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--slate);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.7rem;
  color: var(--mid);
  font-weight: 400;
  line-height: 1.4;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  padding: 13px 32px;
  background: var(--slate);
  color: var(--white);
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.btn-primary:hover {
  background: var(--slate2);
  box-shadow: 0 8px 24px rgba(28,32,40,0.18);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-block;
  padding: 12px 32px;
  border: 1.5px solid var(--rule);
  color: var(--slate);
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  background: none;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}

/* ─── ÁREAS ─── */
.areas {
  background: var(--off);
  padding: 96px var(--px);
  border-top: 1px solid var(--rule);
}
.areas-header {
  max-width: 1200px;
  margin: 0 auto 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.section-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-tag::before {
  content: '';
  width: 16px; height: 1.5px;
  background: var(--blue);
  border-radius: 2px;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--slate);
}
.section-sub {
  font-size: 0.85rem;
  color: var(--mid);
  max-width: 260px;
  line-height: 1.85;
  text-align: right;
  font-weight: 300;
}

.areas-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
}
.area-card {
  background: var(--white);
  padding: 36px 32px 32px;
  position: relative;
  transition: background 0.25s, transform 0.25s;
  overflow: hidden;
}
.area-card:hover {
  background: var(--off);
  transform: translateY(-3px);
  z-index: 1;
  box-shadow: 0 8px 32px rgba(28,32,40,0.1);
}
.area-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--blue);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}
.area-card:hover::before { transform: scaleY(1); }

.area-num {
  font-family: var(--display);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(28,32,40,0.06);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
  transition: color 0.25s;
}
.area-card:hover .area-num { color: rgba(139,26,26,0.1); }
.area-name {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.area-desc {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.8;
  font-weight: 300;
}

/* ─── VALORES ─── */
.values-strip {
  padding: 96px var(--px);
  background: var(--slate);
}
.values-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
.value-item { position: relative; }
.value-item::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--blue);
  border-radius: 2px;
  margin-bottom: 28px;
  transition: width 0.4s ease;
}
.value-item:hover::before { width: 48px; }
.value-item h3 {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.value-item p {
  font-size: 0.85rem;
  color: rgba(250,250,250,0.45);
  line-height: 1.85;
  font-weight: 300;
}

/* ─── CTA STRIP ─── */
.cta-strip {
  padding: 88px var(--px);
  background: var(--blue);
}
.cta-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-strip-title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.cta-strip-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 10px;
  font-weight: 300;
}
.cta-strip-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; flex-shrink: 0; }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: #fff;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.btn-white:hover {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
  transform: translateY(-1px);
}
.btn-ghost {
  display: inline-block;
  padding: 12px 32px;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
  font-size: 0.72rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  background: none;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  transform: translateY(-1px);
}

/* ─── PAGE HEADER ─── */
.page-header {
  background: var(--slate);
  padding: 72px var(--px) 56px;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
}
.page-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.page-header-tag {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-lt);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-header-tag::before {
  content: '';
  width: 16px; height: 1.5px;
  background: var(--blue-lt);
  border-radius: 2px;
}
.page-header-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.03em;
  max-width: 640px;
}
.page-header-desc {
  font-size: 0.85rem;
  color: rgba(250,250,250,0.4);
  max-width: 260px;
  text-align: right;
  line-height: 1.85;
  font-weight: 300;
}

/* ─── SOBRE ─── */
.sobre-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px var(--px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.sobre-foto {
  margin: 0 0 48px;
}
.sobre-foto-img {
  position: relative;
  isolation: isolate;
}
.sobre-foto img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 4.2;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 2px;
  filter: saturate(0.95);
}
.sobre-foto-img::after {
  content: '';
  position: absolute;
  left: 16px; right: -16px; top: 16px; bottom: -16px;
  border: 1.5px solid var(--blue-line);
  border-radius: 2px;
  z-index: -1;
}
.sobre-foto figcaption {
  margin-top: 36px;
  padding-left: 16px;
  border-left: 2px solid var(--blue);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sobre-foto-nome {
  font-family: var(--display);
  font-size: 1.25rem;
  color: var(--slate);
  line-height: 1.2;
}
.sobre-foto-cargo {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.sobre-text {
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 20px;
  font-weight: 300;
}
.sobre-text:first-of-type {
  font-family: var(--display);
  font-size: 1.3rem;
  color: var(--slate);
  line-height: 1.6;
  font-weight: 300;
  font-style: italic;
}

.timeline { padding-left: 24px; position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 1.5px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  border-radius: 2px;
}
.tl-item {
  position: relative;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.tl-item.visible {
  opacity: 1;
  transform: translateX(0);
}
.tl-item:last-child { margin-bottom: 0; }
.tl-item::before {
  content: '';
  position: absolute;
  left: -28px; top: 7px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-dim);
  transition: box-shadow 0.3s;
}
.tl-item:hover::before {
  box-shadow: 0 0 0 6px var(--blue-dim);
}
.tl-year {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.tl-title {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.tl-text {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.8;
  font-weight: 300;
}

.mission-block {
  background: var(--off);
  border-top: 1px solid var(--rule);
  padding: 80px var(--px);
}
.mission-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
}
.mission-card {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
  transition: background 0.25s, transform 0.25s;
}
.mission-card:hover {
  background: var(--off);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(28,32,40,0.08);
  z-index: 1;
}
.mission-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(to right, var(--blue), transparent);
}
.mission-label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.mission-title {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.mission-text {
  font-size: 0.84rem;
  color: var(--mid);
  line-height: 1.85;
  font-weight: 300;
}

/* ─── CONTATO ─── */
.contato-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px var(--px);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.info-items { display: flex; flex-direction: column; }
.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule-lt);
  transition: transform 0.2s;
}
.info-item:hover { transform: translateX(4px); }
.info-item:first-child { border-top: 1px solid var(--rule-lt); }
.info-icon {
  width: 36px; height: 36px;
  background: var(--blue-dim);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
  transition: background 0.2s;
}
.info-item:hover .info-icon { background: rgba(139,26,26,0.15); }
.info-icon svg { width: 15px; height: 15px; }
.info-label {
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.info-value {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.65;
  font-weight: 300;
}
.info-value a { color: var(--slate); text-decoration: none; transition: color 0.2s; }
.info-value a:hover { color: var(--blue); }

.info-map {
  margin-top: 28px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: 0 4px 40px rgba(28,32,40,0.06);
}
.info-map iframe {
  width: 100%;
  height: 220px;
  display: block;
  border: 0;
  filter: grayscale(12%) contrast(1.04);
}

.form-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 48px 44px;
  position: relative;
  box-shadow: 0 4px 40px rgba(28,32,40,0.06);
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 32px; right: 32px;
  height: 2px;
  background: var(--blue);
  border-radius: 0 0 2px 2px;
}
.form-title {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--slate);
  margin-bottom: 6px;
}
.form-sub {
  font-size: 0.83rem;
  color: var(--mid);
  margin-bottom: 36px;
  font-weight: 300;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--off);
  border: 1.5px solid var(--rule);
  color: var(--slate);
  padding: 11px 14px;
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 400;
  outline: none;
  border-radius: 4px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  resize: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--mid); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--blue-dim);
}
.form-group textarea { min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--blue);
  color: #fff;
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.form-submit:hover {
  background: var(--blue-lt);
  box-shadow: 0 6px 24px var(--blue-line);
  transform: translateY(-1px);
}
.form-submit:disabled {
  background: var(--rule);
  color: var(--mid);
  cursor: not-allowed;
  transform: none;
}

.form-success { display: none; text-align: center; padding: 56px 20px; }
.form-success .success-icon {
  width: 52px; height: 52px;
  background: var(--blue-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--blue);
}
.form-success h3 {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--slate);
}
.form-success p { font-size: 0.85rem; color: var(--mid); font-weight: 300; }

/* ─── FOOTER ─── */
footer {
  background: var(--slate);
  border-top: 2px solid var(--blue);
  padding: 36px var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.footer-logo span {
  display: block;
  font-family: var(--body);
  font-size: 0.55rem;
  color: rgba(250,250,250,0.35);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 4px;
}
.footer-oab {
  font-size: 0.62rem;
  color: rgba(250,250,250,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
}
.footer-copy {
  font-size: 0.7rem;
  color: rgba(250,250,250,0.25);
  text-align: right;
  line-height: 1.7;
  font-weight: 300;
}
.footer-credit {
  font-size: 0.58rem;
  text-align: right;
  margin-top: 0.4rem;
}
footer .footer-credit a,
footer .footer-credit a:visited {
  color: rgba(250,250,250,0.3);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}
footer .footer-credit a:hover {
  color: rgba(250,250,250,0.55);
  text-decoration: underline;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── ANIMATIONS ─── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px var(--blue-dim); }
  50%       { box-shadow: 0 0 0 7px rgba(139,26,26,0.04); }
}
.tl-item.visible::before {
  animation: pulse-dot 2.5s ease infinite;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .sobre-content { grid-template-columns: 1fr; gap: 56px; }
  .sobre-foto { max-width: 420px; margin-right: 16px; }
  .contato-layout { grid-template-columns: 1fr; gap: 48px; }
  .values-inner { grid-template-columns: 1fr; gap: 40px; }
  .mission-inner { grid-template-columns: 1fr; }
  .mission-card { border-bottom: 1px solid var(--rule); }
  .areas-header { flex-direction: column; align-items: flex-start; }
  .section-sub { text-align: left; max-width: 100%; }
  .page-header-inner { flex-direction: column; align-items: flex-start; }
  .page-header-desc { text-align: left; }
  .hero-stats { flex-wrap: wrap; }
  .stat-item { min-width: 140px; }
  .nav-cta { display: none; }
}

@media (max-width: 640px) {
  :root { --px: clamp(16px, 4%, 24px); }
  .areas-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; flex-direction: column; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--rule);
    padding: 16px var(--px);
    gap: 4px;
  }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  footer { flex-direction: column; text-align: center; }
  .footer-copy { text-align: center; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
  .cta-strip-actions { width: 100%; flex-direction: column; }
  .btn-white, .btn-ghost { width: 100%; text-align: center; justify-content: center; }
  .hero-bottom { flex-direction: column; align-items: flex-start; }
  .nav-logo-sub { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ─── MARCA D'ÁGUA (logo) ───
   Centralizada e fixa; o tamanho acompanha a resolução (largura e altura da tela) */
body::before {
  content: '';
  position: fixed;
  top: 50%; left: 50%;
  width: min(70vw, 125vh, 1000px);
  aspect-ratio: 1000 / 478;
  transform: translate(-50%, -50%);
  background: url('logo-marca-dagua.png?v=2') center / contain no-repeat;
  opacity: 0.11;
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 900px) {
  body::before { width: min(92vw, 125vh); opacity: 0.09; }
}

/* ─── LAUREAMENTO (Sobre) ─── */
.laurea-block {
  border-top: 1px solid var(--rule);
  padding: 80px var(--px);
}
.laurea-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.laurea-foto { margin: 0; }
.laurea-foto img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--rule);
  box-shadow: 0 8px 32px rgba(28,32,40,0.10);
}
.laurea-title {
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--slate);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 12px 0 20px;
}
.laurea-texto p {
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 16px;
  max-width: 560px;
}
.laurea-inner.sem-foto { grid-template-columns: 1fr; }
.laurea-inner.sem-foto .laurea-foto { display: none; }
@media (max-width: 900px) {
  .laurea-inner { grid-template-columns: 1fr; gap: 40px; }
}
