/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:    #2B2E3B;
  --darker:  #222530;
  --gold:    #C9882A;
  --gold-lt: #E0A84A;
  --light:   #F5F4F0;
  --white:   #FFFFFF;
  --gray:    #9EA3B0;
  --gray-lt: #D1D5E0;
  --radius:  4px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.65;
  font-size: 16px;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
em { font-style: italic; }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900; line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
p  { color: #5a5f72; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-sub {
  font-size: 1.05rem;
  max-width: 640px;
  margin-bottom: 3rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-lt); border-color: var(--gold-lt); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
  padding: 16px 32px;
  font-size: 1rem;
  width: 100%;
  justify-content: center;
}
.btn-whatsapp svg { width: 22px; height: 22px; }
.btn-whatsapp:hover { background: #1ebe5c; border-color: #1ebe5c; }

/* ===== HEADER / NAV ===== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}

#header.scrolled {
  background: var(--darker);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  height: 68px;
}

/* Icon (left) */
.nav-icon-link {
  display: flex;
  align-items: center;
}

.nav-icon-img {
  height: 44px;
  width: 44px;
  object-fit: cover;
  border-radius: 2px;
}

/* Brand name (center) */
.nav-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
  gap: 1px;
}

.nav-brand-name {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 0.18em;
  color: var(--white);
  text-transform: uppercase;
}

.nav-brand-sub {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: lowercase;
}

/* Right side */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  opacity: 0.85;
  transition: opacity var(--transition), color var(--transition);
}
.nav-links a:hover { opacity: 1; color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 700 !important;
  opacity: 1 !important;
}
.nav-cta:hover { background: var(--gold-lt) !important; }

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

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

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,136,42,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(201,136,42,0.05) 0%, transparent 60%);
}

/* Grid lines decoration */
#hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background-image:
    linear-gradient(rgba(201,136,42,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,136,42,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.5), transparent);
}

.hero-overlay { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  max-width: 760px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hero-content h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero-content h1 span { color: var(--gold); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray-lt);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 0.4; transform: scaleY(0.5); transform-origin: top; }
}

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }

.section-dark {
  background: var(--darker);
  color: var(--white);
}
.section-dark p { color: var(--gray); }
.section-dark h2 { color: var(--white); }
.section-dark .section-sub { color: var(--gray); }

/* ===== SOBRE ===== */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 80px;
}

.sobre-text h2 { color: var(--dark); }
.sobre-text p { font-size: 1.02rem; line-height: 1.75; }

.sobre-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gray-lt);
  border: 1px solid var(--gray-lt);
  border-radius: 6px;
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.stat-card {
  background: var(--white);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 400;
}

/* Serviços */
.servicos { border-top: 1px solid var(--gray-lt); padding-top: 64px; }

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--gray-lt);
  border: 1px solid var(--gray-lt);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 2rem;
}

.servico-item {
  background: var(--white);
  padding: 32px 24px;
  transition: background var(--transition);
}
.servico-item:hover { background: var(--light); }

.servico-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 1rem;
}
.servico-icon svg { width: 100%; height: 100%; }

.servico-item h3 { font-size: 1rem; color: var(--dark); margin-bottom: 0.5rem; }
.servico-item p { font-size: 0.88rem; color: var(--gray); margin: 0; }

/* ===== PROJETOS ===== */
.projetos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  border-radius: 6px;
  overflow: hidden;
}

.projeto-card {
  position: relative;
  overflow: hidden;
  height: 300px;
  cursor: default;
}


.projeto-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.6s ease;
}

.projeto-card:hover .projeto-img {
  transform: scale(1.05);
}

.projeto-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(22, 25, 34, 0.97) 0%,
    rgba(22, 25, 34, 0.55) 45%,
    rgba(22, 25, 34, 0.15) 100%
  );
  transition: background 0.4s ease;
}

.projeto-card:hover .projeto-overlay {
  background: linear-gradient(
    to top,
    rgba(22, 25, 34, 0.98) 0%,
    rgba(22, 25, 34, 0.7) 55%,
    rgba(22, 25, 34, 0.25) 100%
  );
}

.projeto-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width 0.4s ease;
  z-index: 2;
}
.projeto-card:hover::before { width: 100%; }

.projeto-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 28px 24px;
  z-index: 1;
  transform: translateY(4px);
  transition: transform 0.4s ease;
}
.projeto-card:hover .projeto-info { transform: translateY(0); }

.projeto-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.projeto-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.projeto-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.75rem;
}

.projeto-arq {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
  font-style: italic;
}

/* ===== EQUIPE ===== */
.equipe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--gray-lt);
  border: 1px solid var(--gray-lt);
  border-radius: 6px;
  overflow: hidden;
}

.membro-card {
  background: var(--white);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.membro-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.membro-foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.membro-info h3 { font-size: 1.3rem; color: var(--dark); margin-bottom: 0.25rem; }

.membro-cargo {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.membro-info p { font-size: 0.92rem; line-height: 1.7; }

.membro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 0.5rem;
}

.membro-tags span {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border: 1px solid var(--gray-lt);
  border-radius: 100px;
  color: var(--gray);
  letter-spacing: 0.04em;
}

/* ===== CONTATO ===== */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contato-info { display: flex; flex-direction: column; gap: 2rem; }

.contato-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contato-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.contato-icon svg { width: 100%; height: 100%; }

.contato-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 2px;
}

.contato-value {
  font-size: 1rem;
  color: var(--white);
  font-weight: 400;
  transition: color var(--transition);
}
a.contato-value:hover { color: var(--gold); }

.cta-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 40px 36px;
  position: sticky;
  top: 100px;
}

.cta-card h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 1rem; }
.cta-card p { margin-bottom: 2rem; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.footer-icon {
  height: 36px;
  width: 36px;
  object-fit: cover;
  border-radius: 2px;
  opacity: 0.9;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.footer-brand-name {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  color: var(--white);
  text-transform: uppercase;
}

.footer-brand-sub {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: lowercase;
}
.footer-cnpj { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-fab svg { width: 28px; height: 28px; }
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 900px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
  .sobre-stats { position: static; }
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .projetos-grid { grid-template-columns: 1fr 1fr; }
  .equipe-grid { grid-template-columns: 1fr; }
  .contato-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-card { position: static; }
}

/* ===== MOBILE MENU ANIMATION ===== */
.nav-links {
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.4,0,0.2,1), visibility 0.3s;
}

/* ===== NAV TOGGLE ANIMATION ===== */
.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-toggle span {
  transition: transform 0.3s ease, opacity 0.2s ease;
}

/* ===== MOBILE SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--gold);
  z-index: 200;
  width: 0%;
  transition: width 0.1s linear;
}

/* ===== HORIZONTAL PROJECT CAROUSEL (mobile) ===== */
.projetos-scroll-hint {
  display: none;
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 640px) {

  /* --- Globals --- */
  .section { padding: 60px 0; }
  .container { padding: 0 20px; }
  h2 { font-size: 1.85rem; letter-spacing: -0.01em; }
  h3 { font-size: 1.15rem; }
  .section-sub { font-size: 0.97rem; margin-bottom: 2rem; line-height: 1.65; }
  .section-label { font-size: 0.7rem; }

  /* --- Nav --- */
  #header { background: var(--darker); }
  .nav {
    grid-template-columns: auto 1fr auto;
    height: 62px;
    padding: 0 4px;
  }
  .nav-brand {
    align-items: center;
    padding-left: 10px;
  }
  .nav-brand-name { font-size: 1.05rem; letter-spacing: 0.14em; }
  .nav-brand-sub { font-size: 0.56rem; }
  .nav-icon-img { height: 38px; width: 38px; }

  .nav-toggle {
    display: flex;
    padding: 10px 6px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: flex;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 62px; left: 0; right: 0; bottom: 0;
    background: var(--darker);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    z-index: 98;
    transform: translateY(-12px);
  }
  .nav-links.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-links li:first-child { border-top: 1px solid rgba(255,255,255,0.05); }

  .nav-links a {
    display: block;
    padding: 20px 24px;
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 1;
    letter-spacing: 0.03em;
    transition: color 0.2s, background 0.2s;
  }
  .nav-links a:active { background: rgba(201,136,42,0.08); color: var(--gold); }

  .nav-cta {
    background: var(--gold) !important;
    border-radius: 0 !important;
    padding: 20px 24px !important;
    margin: 0 !important;
    width: 100%;
    font-size: 1rem !important;
    font-weight: 700 !important;
  }

  /* --- Hero --- */
  #hero {
    min-height: 100svh;
    min-height: 100vh;
  }

  #hero::after { width: 100%; opacity: 0.6; }

  .hero-content {
    padding: 100px 20px 80px;
    max-width: 100%;
  }

  .hero-eyebrow {
    font-size: 0.67rem;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 9vw, 2.6rem);
    line-height: 1.08;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
  }

  .hero-sub {
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 2.25rem;
    color: rgba(209,213,224,0.85);
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
    font-size: 0.92rem;
    min-height: 52px;
  }

  .hero-scroll { bottom: 24px; }

  /* --- Sobre --- */
  .sobre-grid { gap: 36px; margin-bottom: 52px; }
  .sobre-text p { font-size: 0.97rem; line-height: 1.75; }

  .sobre-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
  }
  .stat-card {
    padding: 24px 18px;
    gap: 4px;
  }
  .stat-number { font-size: 1.8rem; }
  .stat-label { font-size: 0.75rem; line-height: 1.3; }

  .servicos { padding-top: 48px; }
  .servicos-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
  }
  .servico-item { padding: 24px 18px; }
  .servico-icon { width: 34px; height: 34px; margin-bottom: 0.75rem; }
  .servico-item h3 { font-size: 0.92rem; margin-bottom: 0.35rem; }
  .servico-item p { font-size: 0.82rem; line-height: 1.55; }

  /* --- Projetos — HORIZONTAL SCROLL CAROUSEL --- */
  .projetos-scroll-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    opacity: 0.7;
  }
  .projetos-scroll-hint svg {
    width: 16px;
    height: 16px;
    animation: swipeHint 1.4s ease-in-out infinite;
  }
  @keyframes swipeHint {
    0%, 100% { transform: translateX(0); opacity: 0.5; }
    50% { transform: translateX(4px); opacity: 1; }
  }

  .projetos-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 4px 20px 16px;
    margin: 0 -20px;
    scrollbar-width: none;
  }
  .projetos-grid::-webkit-scrollbar { display: none; }

  .projeto-card {
    flex: 0 0 82vw;
    max-width: 340px;
    height: 420px;
    scroll-snap-align: start;
    border-radius: 8px;
    overflow: hidden;
  }

  .projeto-card:first-child { margin-left: 0; }
  .projeto-card:last-child { margin-right: 20px; }

  .projeto-overlay {
    background: linear-gradient(
      to top,
      rgba(22,25,34,0.98) 0%,
      rgba(22,25,34,0.6) 50%,
      rgba(22,25,34,0.1) 100%
    );
  }

  .projeto-info {
    padding: 24px 22px 22px;
    transform: none;
  }
  .projeto-tag { font-size: 0.66rem; margin-bottom: 6px; }
  .projeto-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
  .projeto-card p { font-size: 0.83rem; line-height: 1.55; display: block; }
  .projeto-arq { font-size: 0.72rem; }

  /* Dots indicator */
  .projetos-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
  }
  .projetos-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: background 0.3s, width 0.3s;
  }
  .projetos-dots span.active {
    width: 20px;
    border-radius: 3px;
    background: var(--gold);
  }

  /* --- Equipe --- */
  .equipe-grid { grid-template-columns: 1fr; gap: 1px; }

  .membro-card {
    padding: 32px 24px 28px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
  }

  .membro-avatar {
    width: 100px;
    height: 100px;
    border-width: 3px;
    flex-shrink: 0;
  }

  .membro-info h3 { font-size: 1.2rem; }
  .membro-cargo { font-size: 0.75rem; letter-spacing: 0.05em; }
  .membro-info p { font-size: 0.9rem; line-height: 1.7; }

  .membro-tags {
    justify-content: center;
    gap: 6px;
  }
  .membro-tags span {
    font-size: 0.72rem;
    padding: 4px 12px;
  }

  /* --- Contato --- */
  .contato-grid { gap: 36px; }
  .contato-info { gap: 1.75rem; }

  .contato-item { gap: 14px; align-items: center; }
  .contato-icon { width: 22px; height: 22px; margin-top: 0; }
  .contato-label { font-size: 0.68rem; }
  .contato-value { font-size: 1.02rem; }

  .cta-card {
    padding: 28px 22px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
  }
  .cta-card h3 { font-size: 1.25rem; margin-bottom: 0.85rem; }
  .cta-card p { font-size: 0.93rem; margin-bottom: 1.5rem; }

  .btn-whatsapp {
    padding: 18px 20px;
    font-size: 1rem;
    min-height: 56px;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  }

  /* --- Footer --- */
  .footer { padding: 40px 0 32px; }
  .footer-brand { gap: 10px; }
  .footer-brand-name { font-size: 1rem; }
  .footer-icon { height: 32px; width: 32px; }
  .footer-cnpj { font-size: 0.75rem; }
  .footer-copy { font-size: 0.77rem; }

  /* --- WhatsApp FAB --- */
  .whatsapp-fab {
    width: 54px;
    height: 54px;
    bottom: 20px;
    right: 16px;
    box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  }
  .whatsapp-fab svg { width: 26px; height: 26px; }

  /* --- Reveal: less shift on mobile --- */
  .reveal {
    transform: translateY(16px);
  }
}
