:root {
  --ink: #0d0d0d;
  --muted: #5d5b59;
  --line: #e9e6e1;
  --soft: #f6f4f0;
  --paper: #ffffff;
  --accent: #f8b914;
  --accent-dark: #d99700;
  --dark: #171513;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(21, 18, 13, 0.14);
  --container: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 112px 0; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
}
.skip-link:focus { left: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(13,13,13,.07);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; }
.brand img {
  width: auto;
  height: 54px;
  display: block;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 650;
  font-size: 15px;
}
.main-nav a { text-decoration: none; }
.main-nav > a:not(.button) { position: relative; }
.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--accent);
  transition: right .2s ease;
}
.main-nav > a:not(.button):hover::after { right: 0; }
.menu-toggle { display: none; }

.button {
  min-height: 50px;
  padding: 0 26px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #0a0a0a;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: #ffc52b; box-shadow: 0 12px 28px rgba(248,185,20,.26); }
.button-small { min-height: 44px; padding-inline: 22px; }

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  padding-top: 70px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  gap: 72px;
  align-items: center;
}
.eyebrow, .section-kicker {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 800;
}
.section-kicker {
  color: var(--accent-dark);
  font-size: 13px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(52px, 5.35vw, 78px);
  line-height: .99;
  letter-spacing: -.055em;
}
.hero-lead {
  max-width: 690px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 1.7vw, 23px);
  line-height: 1.55;
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.text-link {
  position: relative;
  font-weight: 800;
  text-decoration: none;
  padding-bottom: 8px;
}
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
}
.hero-notes {
  margin-top: 44px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-notes span {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #4a4744;
  font-size: 13px;
  font-weight: 750;
}
.hero-visual {
  position: relative;
  width: min(100%, 470px);
  justify-self: end;
}
.photo-accent {
  position: absolute;
  width: 72%;
  height: 68%;
  right: -28px;
  bottom: -28px;
  border-radius: var(--radius);
  background: var(--accent);
}
.photo-frame {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #e9e9e9;
  aspect-ratio: 1137 / 1383;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.photo-label {
  position: absolute;
  z-index: 2;
  left: -28px;
  bottom: 30px;
  padding: 11px 16px;
  border-radius: 8px;
  background: rgba(13,13,13,.92);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.intro-strip { padding: 44px 0; background: var(--accent); }
.strip-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
}
.strip-grid p {
  max-width: 860px;
  margin: 0;
  font-size: clamp(20px, 2.2vw, 31px);
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -.02em;
}
.strip-mark {
  writing-mode: vertical-rl;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
}

.split-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
}
h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.07;
  letter-spacing: -.045em;
}
.prose { font-size: 20px; color: var(--muted); }
.prose p { margin: 0 0 22px; }

.section-soft { background: var(--soft); }
.section-heading {
  display: grid;
  grid-template-columns: 1.05fr .65fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 56px;
}
.section-heading > p { margin: 0; color: var(--muted); font-size: 18px; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.service-card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid #e7e2da;
  border-radius: 18px;
  background: rgba(255,255,255,.68);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-5px); background: #fff; box-shadow: 0 18px 50px rgba(36,29,20,.08); }
.card-number { color: var(--accent-dark); font-size: 13px; font-weight: 900; letter-spacing: .1em; }
.service-card h3 { margin: 44px 0 12px; font-size: 25px; line-height: 1.15; letter-spacing: -.025em; }
.service-card p { margin: 0; color: var(--muted); font-size: 17px; }

.dark-section { background: var(--dark); color: #fff; }
.experience-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: start;
}
.section-kicker-light { color: var(--accent); }
.experience-copy > p { margin: 0 0 44px; color: #c9c5bf; font-size: 21px; }
.experience-facts { border-top: 1px solid rgba(255,255,255,.15); }
.experience-facts div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.experience-facts strong { color: var(--accent); }
.experience-facts span { color: #d7d2cb; }

.timeline { border-top: 1px solid var(--line); }
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 48px;
  padding: 34px 0 34px 34px;
  border-bottom: 1px solid var(--line);
}
.timeline-dot {
  position: absolute;
  left: 0;
  top: 44px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(248,185,20,.16);
}
.timeline-meta { color: var(--accent-dark); font-size: 13px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.timeline-item h3 { margin: 0 0 8px; font-size: 24px; line-height: 1.2; }
.timeline-item p { margin: 0; max-width: 750px; color: var(--muted); font-size: 17px; }

.contact-section { padding-top: 70px; }
.contact-card {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(480px, 1.22fr);
  gap: 64px;
  align-items: start;
  padding: 58px;
  border-radius: 24px;
  background: var(--soft);
  border: 1px solid #eee9e0;
}
.contact-intro { padding-top: 18px; }
.contact-card h2 { max-width: 780px; }
.contact-card p:not(.section-kicker) { max-width: 720px; color: var(--muted); font-size: 18px; }
.tally-embed-wrap {
  min-width: 0;
  padding: 18px 18px 6px;
  border: 1px solid #e9e3d9;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(36, 29, 20, .08);
}
.tally-embed-wrap iframe {
  width: 100%;
  min-height: 690px;
  display: block;
  border: 0;
}

.site-footer { padding: 32px 0; border-top: 1px solid var(--line); }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
}
.footer-inner img { width: auto; height: 42px; display: block; object-fit: contain; }
.footer-inner p { margin: 0; }
.footer-inner a { justify-self: end; text-decoration: none; font-weight: 750; color: var(--ink); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  :root { --container: min(100% - 34px, 780px); }
  .section { padding: 86px 0; }
  .menu-toggle {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span { display: block; width: 24px; height: 2px; margin: 3px 0; background: var(--ink); transition: .2s; }
  .main-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 24px 28px;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(0,0,0,.08);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 0; }
  .main-nav .button { margin-top: 10px; padding-inline: 22px; }
  .hero { min-height: auto; padding: 70px 0 100px; }
  .hero-grid { grid-template-columns: 1fr; gap: 58px; }
  .hero-visual { justify-self: center; width: min(100%, 500px); }
  .photo-label { left: 16px; }
  .split-layout, .experience-grid, .contact-card { grid-template-columns: 1fr; gap: 38px; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .contact-card { padding: 42px; }
  .contact-intro { padding-top: 0; }
  .tally-embed-wrap iframe { min-height: 720px; }
}

@media (max-width: 650px) {
  :root { --container: calc(100% - 28px); }
  .section { padding: 68px 0; }
  .header-inner { min-height: 68px; }
  .brand img { height: 46px; }
  .main-nav { inset: 68px 0 auto 0; }
  .hero { padding: 54px 0 78px; }
  .hero h1 { font-size: clamp(44px, 13vw, 58px); }
  .hero-lead { font-size: 18px; }
  .hero-actions { align-items: stretch; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { text-align: center; }
  .photo-accent { right: -10px; bottom: -15px; }
  .photo-label { left: 12px; right: 12px; bottom: 18px; text-align: center; }
  .strip-grid { grid-template-columns: 1fr; }
  .strip-mark { writing-mode: horizontal-tb; }
  .cards-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 230px; }
  .experience-facts div { grid-template-columns: 1fr; gap: 5px; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; padding-left: 28px; }
  .contact-card { padding: 30px 24px; }
  .tally-embed-wrap { padding: 12px 8px 0; }
  .tally-embed-wrap iframe { min-height: 760px; }
  .footer-inner { grid-template-columns: 1fr; justify-items: start; }
  .footer-inner a { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Botão flutuante do WhatsApp */
.whatsapp-float {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 90;
  min-height: 56px;
  padding: 0 20px 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 999px;
  background: #25d366;
  color: #071b0e;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 14px 38px rgba(14, 94, 43, .28);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.whatsapp-float svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  background: #39dc76;
  box-shadow: 0 18px 44px rgba(14, 94, 43, .34);
}
.whatsapp-float:focus-visible {
  outline: 3px solid #0d0d0d;
  outline-offset: 4px;
}

@media (max-width: 650px) {
  .whatsapp-float {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 56px;
    min-height: 56px;
    padding: 0;
  }
  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

@media print {
  .whatsapp-float { display: none !important; }
}
