:root {
  --ink: #071310;
  --ink-soft: #d7e4de;
  --surface: #0c1c17;
  --surface-2: #123028;
  --mist: #e8f2ed;
  --forest: #2f7a5c;
  --forest-deep: #1b4f3c;
  --accent: #7ec8a3;
  --accent-soft: #b7e0cb;
  --muted: #8fa79c;
  --white: #ffffff;
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --radius: 18px;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
  --header: 76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header); }

body {
  font-family: var(--font-body);
  color: var(--mist);
  background:
    radial-gradient(900px 500px at 85% 0%, rgba(126, 200, 163, 0.14), transparent 55%),
    radial-gradient(800px 480px at 0% 30%, rgba(47, 122, 92, 0.2), transparent 50%),
    linear-gradient(165deg, #06110e 0%, #0c1c17 45%, #102820 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--header);
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.header.scrolled {
  background: rgba(7, 19, 16, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232, 242, 237, 0.08);
}

.header__row {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--forest), var(--forest-deep));
  color: var(--accent-soft);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.01em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.nav a:hover { color: var(--accent); }

.nav__cta {
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  background: var(--forest);
  color: var(--mist) !important;
}

.nav__cta:hover { background: var(--forest-deep); }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--mist);
  margin-inline: auto;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: calc(var(--header) + 2rem) 0 4.5rem;
  color: var(--mist);
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 18s ease-out forwards;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 17, 14, 0.45) 0%, rgba(6, 17, 14, 0.55) 40%, rgba(6, 17, 14, 0.92) 100%),
    radial-gradient(ellipse at 70% 20%, rgba(126, 200, 163, 0.16), transparent 45%);
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero__tag {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(232, 242, 237, 0.28);
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 5.6rem);
  line-height: 0.95;
  margin-bottom: 1.25rem;
}

.hero h1 em {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.42em;
  font-style: italic;
  color: rgba(232, 242, 237, 0.86);
  letter-spacing: 0.01em;
}

.hero__lead {
  max-width: 34rem;
  font-size: 1.1rem;
  color: rgba(232, 242, 237, 0.82);
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn--light {
  background: var(--mist);
  color: var(--ink);
}

.btn--ghost {
  border: 1px solid rgba(232, 242, 237, 0.4);
  color: var(--mist);
}

.btn--ghost:hover { background: rgba(255, 255, 255, 0.08); }

.btn--dark {
  background: var(--forest);
  color: var(--mist);
  margin-top: 1.25rem;
}

/* Strip */
.strip {
  padding: 1.75rem 0;
  background: rgba(18, 48, 40, 0.9);
  color: var(--mist);
  border-block: 1px solid rgba(232, 242, 237, 0.08);
}

.strip__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.strip__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--accent-soft);
}

.strip__item span {
  font-size: 0.88rem;
  color: rgba(232, 242, 237, 0.7);
}

/* Sections */
.section { padding: 6rem 0; }

.section__head { max-width: 640px; margin-bottom: 3rem; }

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.section h2,
.office__panel h2,
.contact__intro h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section__lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 36rem;
}

/* Areas */
.areas {
  display: grid;
  gap: 3.5rem;
}

.area {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.area--reverse .area__visual { order: 2; }
.area--reverse .area__body { order: 1; }

.area__visual {
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow);
}

.area__visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.area:hover .area__visual img { transform: scale(1.04); }

.area__body h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.area__body p { color: var(--muted); font-size: 1.05rem; }

/* Office */
.office {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}

.office__bg {
  position: absolute;
  inset: 0;
}

.office__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
}

.office__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 17, 14, 0.9), rgba(6, 17, 14, 0.55) 55%, rgba(6, 17, 14, 0.25));
}

.office__panel {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 2.4rem;
  border-radius: calc(var(--radius) + 4px);
  background: rgba(12, 28, 23, 0.92);
  border: 1px solid rgba(232, 242, 237, 0.1);
  box-shadow: var(--shadow);
  color: var(--mist);
}

.office__panel p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.facts {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.facts li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(232, 242, 237, 0.1);
  font-size: 0.95rem;
}

.facts span {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Contact */
.contact__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem 2.5rem;
}

.contact__intro { grid-column: 1 / -1; max-width: 640px; }

.contact__channels {
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.channel {
  display: block;
  padding: 1.2rem 1.3rem;
  border-radius: var(--radius);
  background: rgba(18, 48, 40, 0.55);
  border: 1px solid rgba(232, 242, 237, 0.1);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.channel:hover {
  transform: translateX(6px);
  border-color: rgba(126, 200, 163, 0.45);
  background: rgba(18, 48, 40, 0.85);
}

.channel__label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.channel strong {
  font-weight: 600;
  font-size: 1.05rem;
  word-break: break-word;
}

.contact__map {
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid rgba(232, 242, 237, 0.1);
  box-shadow: var(--shadow);
}

.contact__map img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.contact__map address {
  padding: 1.4rem 1.5rem 0;
  color: var(--muted);
  line-height: 1.75;
}

.contact__map address strong {
  display: block;
  color: var(--mist);
  margin-bottom: 0.4rem;
}

.contact__map .btn {
  margin: 1.1rem 1.5rem 1.5rem;
}

/* Footer — sem CNPJ */
.footer {
  padding: 2.75rem 0 1.75rem;
  border-top: 1px solid rgba(232, 242, 237, 0.1);
  background: rgba(0, 0, 0, 0.22);
}

.footer__row {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.footer__sub {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer__meta {
  text-align: right;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

.footer__meta a:hover { color: var(--accent); }

.footer__copy {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(232, 242, 237, 0.08);
  color: var(--muted);
  font-size: 0.82rem;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

@media (max-width: 900px) {
  .area,
  .area--reverse {
    grid-template-columns: 1fr;
  }

  .area--reverse .area__visual,
  .area--reverse .area__body { order: initial; }

  .contact__grid { grid-template-columns: 1fr; }

  .strip__row { grid-template-columns: 1fr; gap: 1.25rem; }

  .facts li { grid-template-columns: 1fr; gap: 0.2rem; }

  .footer__meta { text-align: left; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    top: var(--header);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1.25rem;
    background: rgba(7, 19, 16, 0.97);
    border-bottom: 1px solid rgba(232, 242, 237, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__cta { width: 100%; text-align: center; }

  .hero { align-items: center; padding-bottom: 3rem; }
}
