:root {
  --green-900: #07140d;
  --green-850: #0c1d14;
  --green-800: #143615;
  --green-700: #235f21;
  --green-600: #2f7d2a;
  --green-500: #49a83f;
  --green-400: #6fbd3a;
  --ink: #17201b;
  --muted: #5b665f;
  --line: #dfe7dc;
  --soft: #f7f8f5;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(16, 35, 22, 0.12);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(20, 54, 21, 0.08);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  width: 214px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 25px 0 22px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  height: 2px;
  background: var(--green-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.whatsapp-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 7px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-btn {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  box-shadow: 0 12px 28px rgba(47, 125, 42, 0.28);
  white-space: nowrap;
}

.btn {
  border: 1px solid transparent;
  font-size: 13px;
}

.btn:hover,
.whatsapp-btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  box-shadow: 0 16px 36px rgba(47, 125, 42, 0.28);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline-dark {
  color: var(--green-800);
  border-color: var(--green-600);
  background: transparent;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  color: var(--green-800);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  min-height: 468px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(4, 22, 12, 0.66) 42%, rgba(4, 22, 12, 0.2)),
    url("../img/hero-photo-clean.png") center center/cover no-repeat;
}

.hero-inner {
  min-height: 468px;
  display: flex;
  align-items: flex-start;
  padding: 86px 0 108px;
}

.hero-copy {
  max-width: 560px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-400);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: 42px;
  line-height: 1.03;
  font-weight: 900;
  text-transform: uppercase;
}

h1 span,
h2 span {
  color: var(--green-400);
}

.accent-line {
  width: 112px;
  height: 3px;
  margin: 0 0 18px;
  background: var(--green-500);
}

.hero-copy p {
  max-width: 430px;
  margin-bottom: 22px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.proof-strip {
  margin-top: -104px;
  position: relative;
  z-index: 3;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(111, 189, 58, 0.35);
  border-radius: var(--radius);
  background: rgba(5, 18, 10, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 70px;
  padding: 12px 26px;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.2s ease, transform 0.2s ease;
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item:hover {
  background: rgba(111, 189, 58, 0.08);
  transform: translateY(-2px);
}

.proof-icon,
.card-icon,
.feature-icon {
  object-fit: contain;
  flex: 0 0 auto;
}

.proof-icon {
  width: 42px;
  height: 42px;
}

.line-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--green-400);
  border-radius: 8px;
  color: var(--green-400);
  font-size: 19px;
  font-weight: 900;
}

.line-icon.round {
  border-radius: 50%;
}

.proof-item strong {
  display: block;
  font-size: 15px;
  line-height: 1.2;
  text-transform: uppercase;
}

.proof-item span {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding: 80px 0;
}

.home-services {
  padding-top: 34px;
  padding-bottom: 26px;
}

.home-about {
  padding: 48px 0;
}

.section.soft {
  background:
    radial-gradient(circle at 0 25%, rgba(111, 189, 58, 0.1), transparent 34%),
    var(--soft);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: end;
  gap: 64px;
  margin-bottom: 30px;
}

h2 {
  margin-bottom: 0;
  font-size: 44px;
  line-height: 1.08;
  font-weight: 900;
}

.lead {
  color: var(--muted);
  font-size: 17px;
}

.services-grid {
  display: grid;
 
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card,
.feature-card,
.case-card,
.faq-item,
.contact-card {
  border: 1px solid rgba(20, 54, 21, 0.09);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(25, 51, 31, 0.08);
}

.service-card {
  min-height: 138px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 18px 13px 16px;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card .line-icon,
.card-icon {
  margin: 0 auto 14px;
  border-radius: 4px;
}

.card-icon {
  width: 44px;
  height: 44px;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(73, 168, 63, 0.34);
  box-shadow: 0 18px 42px rgba(25, 51, 31, 0.14);
}

.home-page .services-grid .service-card:nth-child(6) {
  grid-column: 2;
}

.services-page-grid .service-card:nth-child(6) {
  grid-column: 2;
}

.service-card h3 {
  margin-bottom: 7px;
  font-size: 13px;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.dark-band {
  color: var(--white);
  background:
    radial-gradient(circle at 84% 18%, rgba(73, 168, 63, 0.18), transparent 28%),
    radial-gradient(circle at 12% 86%, rgba(111, 189, 58, 0.13), transparent 24%),
    linear-gradient(90deg, rgba(2, 13, 7, 0.98), rgba(5, 35, 15, 0.94));
}

.dark-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1.15fr);
  gap: 52px;
  align-items: center;
}

.dark-band .lead,
.dark-band p {
  color: rgba(255, 255, 255, 0.84);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  padding: 26px 20px;
  color: var(--white);
  text-align: center;
  border-color: rgba(111, 189, 58, 0.65);
  background: rgba(8, 36, 15, 0.62);
  box-shadow: none;
  backdrop-filter: blur(10px);
  transition: transform 0.22s ease, background 0.22s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  background: rgba(13, 51, 21, 0.74);
}

.feature-card .line-icon,
.feature-icon {
  margin: 0 auto 20px;
}

.feature-icon {
  width: 58px;
  height: 58px;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.2;
}

.feature-card p {
  margin: 0;
  font-size: 13px;
}

.cta-band {
  padding: 38px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 60%, rgba(111, 189, 58, 0.2), transparent 22%),
    linear-gradient(90deg, rgba(35, 95, 33, 0.98), rgba(35, 95, 33, 0.86));
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-inner h2 {
  font-size: 38px;
}

.cta-inner p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.page-hero {
  padding: 78px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 20, 10, 0.94), rgba(20, 54, 21, 0.76)),
    url("../img/hero-photo-clean.png") center center/cover no-repeat;
}

.page-hero h1 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: 58px;
}

.page-hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 54px;
  align-items: start;
}

.info-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.info-list li {
  padding: 16px 18px;
  border-left: 4px solid var(--green-500);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--soft);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-list .feature-card {
  color: var(--ink);
  background: var(--white);
  border-color: rgba(20, 54, 21, 0.1);
  box-shadow: var(--shadow);
}

.feature-list .feature-card p {
  color: var(--muted);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.case-card {
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.case-card:hover {
  transform: translateY(-6px);
  border-color: rgba(73, 168, 63, 0.28);
  box-shadow: 0 18px 42px rgba(25, 51, 31, 0.14);
}

.case-card-header {
  min-height: 118px;
  padding: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
}

.case-card-body {
  padding: 24px;
}

.case-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.faq-item.open {
  border-color: rgba(73, 168, 63, 0.24);
  box-shadow: 0 18px 42px rgba(25, 51, 31, 0.12);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border: 0;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--soft);
  color: var(--green-700);
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.faq-item.open .faq-question span {
  color: var(--white);
  background: var(--green-500);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 24px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: 26px;
}

.contact-card {
  padding: 20px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(73, 168, 63, 0.24);
  box-shadow: 0 18px 42px rgba(25, 51, 31, 0.12);
}

.contact-row {
  display: grid;
  gap: 2px;
  padding: 16px 10px;
  border-bottom: 1px solid var(--line);
}


.contact-row:last-child {
  border-bottom: 0;
}

.contact-row strong {
  color: var(--green-700);
  text-transform: uppercase;
  font-size: 13px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--green-800);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

textarea {
  min-height: 134px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(73, 168, 63, 0.24);
  border-color: var(--green-500);
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  padding: 62px 0 30px;
  color: rgba(255, 255, 255, 0.78);
  background: radial-gradient(circle at 70% 10%, rgba(73, 168, 63, 0.18), transparent 30%), var(--green-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1fr 1fr;
  gap: 42px;
}

.site-footer h3 {
  color: var(--green-400);
  font-size: 15px;
  text-transform: uppercase;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin: 8px 0;
}

.footer-brand img {
  width: 230px;
  margin-left: auto;
  filter: none;
}

.socials {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 22px;
}

.socials a,
.socials span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-600);
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

@media (max-width: 920px) {
  .site-nav,
  .topbar .whatsapp-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .topbar.nav-open .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    display: grid;
    gap: 0;
    padding: 10px 20px 20px;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .topbar.nav-open .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .topbar.nav-open .site-nav a::after {
    display: none;
  }

  .proof-grid,
  .services-grid,
  .feature-list,
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-page .services-grid .service-card:nth-child(6) {
    grid-column: auto;
  }

  .services-page-grid .service-card:nth-child(6) {
    grid-column: auto;
  }

  .dark-layout,
  .section-head,
  .two-col,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand img,
  .socials {
    margin-left: 0;
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand {
    width: 205px;
  }

  .hero,
  .hero-inner {
    min-height: 590px;
  }

  h1 {
    font-size: 38px;
  }

  .proof-strip {
    margin-top: 0;
    background: var(--green-900);
  }

  .proof-grid,
  .services-grid,
  .feature-grid,
  .feature-list,
  .case-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .section {
    padding: 62px 0;
  }

  .cta-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal .service-card,
.reveal .feature-card,
.reveal .case-card,
.reveal .faq-item,
.reveal .contact-card,
.reveal .info-list li,
.reveal .cta-inner > *,
.reveal .proof-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.reveal.is-visible .service-card,
.reveal.is-visible .feature-card,
.reveal.is-visible .case-card,
.reveal.is-visible .faq-item,
.reveal.is-visible .contact-card,
.reveal.is-visible .info-list li,
.reveal.is-visible .cta-inner > *,
.reveal.is-visible .proof-item {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible .service-card:nth-child(2),
.reveal.is-visible .feature-card:nth-child(2),
.reveal.is-visible .case-card:nth-child(2),
.reveal.is-visible .faq-item:nth-child(2),
.reveal.is-visible .contact-card:nth-child(2),
.reveal.is-visible .info-list li:nth-child(2),
.reveal.is-visible .cta-inner > *:nth-child(2),
.reveal.is-visible .proof-item:nth-child(2) {
  transition-delay: 0.08s;
}

.reveal.is-visible .service-card:nth-child(3),
.reveal.is-visible .feature-card:nth-child(3),
.reveal.is-visible .case-card:nth-child(3),
.reveal.is-visible .faq-item:nth-child(3),
.reveal.is-visible .info-list li:nth-child(3),
.reveal.is-visible .proof-item:nth-child(3) {
  transition-delay: 0.16s;
}

.reveal.is-visible .service-card:nth-child(4),
.reveal.is-visible .case-card:nth-child(4),
.reveal.is-visible .faq-item:nth-child(4),
.reveal.is-visible .info-list li:nth-child(4),
.reveal.is-visible .proof-item:nth-child(4) {
  transition-delay: 0.24s;
}

.reveal.is-visible .service-card:nth-child(5),
.reveal.is-visible .case-card:nth-child(5),
.reveal.is-visible .faq-item:nth-child(5) {
  transition-delay: 0.32s;
}

.reveal.is-visible .service-card:nth-child(6),
.reveal.is-visible .case-card:nth-child(6) {
  transition-delay: 0.4s;
}

.reveal.is-visible .service-card:nth-child(7) {
  transition-delay: 0.48s;
}

.reveal.is-visible .service-card:nth-child(8) {
  transition-delay: 0.56s;
}

.reveal.is-visible .service-card:hover,
.reveal.is-visible .feature-card:hover,
.reveal.is-visible .case-card:hover {
  transform: translateY(-6px);
}

.reveal.is-visible .contact-card:hover {
  transform: translateY(-4px);
}

.reveal.is-visible .proof-item:hover {
  transform: translateY(-2px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Ajustes finais pelo agente visual: Apple system UI, casing natural e dobras fieis */
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

.site-nav,
.whatsapp-btn,
.btn,
.eyebrow,
h1,
.site-footer h3 {
  text-transform: none;
}

.site-nav {
  font-weight: 700;
}

.home-page .site-nav {
  font-size: 12px;
}

.home-page h1 {
  font-weight: 850;
  letter-spacing: 0;
}

.home-page .hero {
  min-height: 420px;
  background:
    linear-gradient(90deg, rgba(2, 9, 5, 0.9) 0%, rgba(5, 21, 11, 0.82) 36%, rgba(5, 21, 11, 0.42) 62%, rgba(5, 21, 11, 0.08) 100%),
    url("../img/hero-photo-clean.png") center center / cover no-repeat;
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(5, 20, 10, 0.94), rgba(20, 54, 21, 0.76)),
    url("../img/hero-photo-clean.png") center center / cover no-repeat;
}

.site-footer {
  padding: 38px 0 18px;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 76% 8%, rgba(73, 168, 63, 0.14), transparent 25%),
    linear-gradient(135deg, #101816 0%, #07100c 72%);
}

.footer-grid {
  grid-template-columns: 1.18fr 0.74fr 1fr 1.05fr;
  gap: 44px;
  align-items: start;
}

.site-footer h3 {
  margin-bottom: 12px;
  color: var(--green-400);
  font-size: 13px;
  font-weight: 800;
}

.site-footer li {
  margin: 5px 0;
  font-size: 12px;
  line-height: 1.36;
}

.footer-brand img {
  width: 245px;
  margin-left: auto;
  filter: none;
}

.socials {
  gap: 10px;
  margin-top: 18px;
}

.socials a,
.socials span {
  width: 32px;
  height: 32px;
  background: var(--green-600);
  font-size: 11px;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 15px;
  font-size: 11px;
}

.footer-bottom a {
  color: var(--white);
  font-weight: 800;
}

.footer-bottom a:hover {
  color: var(--green-400);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: #25d366;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.38);
}

.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 2px solid rgba(37, 211, 102, 0.55);
  animation: whatsappPulse 1.8s ease-out infinite;
}

.floating-whatsapp svg {
  width: 31px;
  height: 31px;
  position: relative;
  z-index: 1;
}

.floating-whatsapp path {
  fill: currentColor;
}

.social-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--green-600);
}

.social-icon svg {
  width: 17px;
  height: 17px;
}

.social-icon path,
.social-icon circle,
.social-icon rect {
  fill: currentColor;
}

.social-icon .stroke-social path,
.social-icon .stroke-social circle,
.social-icon .stroke-social rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon .stroke-social .social-dot {
  fill: currentColor;
  stroke: none;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(0.82);
    opacity: 0.8;
  }
  80%,
  100% {
    transform: scale(1.38);
    opacity: 0;
  }
}

/* Refinamento das dobras sem texto fantasma no background */
body {
  font-size: 16.5px;
}

.home-page .hero,
.page-hero {
  background:
    linear-gradient(90deg, rgba(2, 9, 5, 0.91) 0%, rgba(5, 21, 11, 0.82) 37%, rgba(5, 21, 11, 0.4) 62%, rgba(5, 21, 11, 0.08) 100%),
    url("../img/hero-photo-clean.png") center center / cover no-repeat;
}

.dark-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(73, 168, 63, 0.18), transparent 28%),
    radial-gradient(circle at 12% 86%, rgba(111, 189, 58, 0.13), transparent 24%),
    linear-gradient(90deg, rgba(2, 13, 7, 0.98), rgba(5, 35, 15, 0.94));
}

.dark-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 58%, rgba(111, 189, 58, 0.08) 58% 59%, transparent 59% 100%),
    linear-gradient(32deg, transparent 0 70%, rgba(255, 255, 255, 0.035) 70% 70.5%, transparent 70.5% 100%);
  opacity: 0.55;
}

.dark-band > .container {
  position: relative;
  z-index: 1;
}

.cta-band {
  background:
    radial-gradient(circle at 8% 60%, rgba(111, 189, 58, 0.2), transparent 22%),
    linear-gradient(90deg, rgba(35, 95, 33, 0.98), rgba(35, 95, 33, 0.86));
}

.home-page .site-nav {
  font-size: 13px;
}

.home-page .hero-copy p,
.home-page .lead,
.dark-band p,
.cta-inner p {
  font-size: 16px;
}

.home-page .service-card p,
.home-page .feature-card p {
  font-size: 13px;
}

.site-footer li {
  font-size: 13px;
}

.footer-bottom {
  font-size: 12px;
}

@media (max-width: 720px) {
  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}

/* Padrao global final: navbar unificada e primeira dobra com nova foto limpa */
.topbar {
  background: rgba(255, 255, 255, 0.97);
}

.nav-wrap,
.home-page .nav-wrap {
  min-height: 58px;
  gap: 18px;
}

.brand,
.home-page .brand {
  width: 158px;
}

.site-nav,
.home-page .site-nav {
  gap: 18px;
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}

.site-nav a,
.home-page .site-nav a {
  padding: 20px 0 18px;
}

.site-nav a::after,
.home-page .site-nav a::after {
  bottom: 10px;
}

.whatsapp-btn,
.btn,
.home-page .whatsapp-btn,
.home-page .btn {
  min-height: 38px;
  padding: 0 17px;
  gap: 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero,
.home-page .hero,
.page-hero {
  background:
    linear-gradient(90deg, rgba(2, 9, 5, 0.9) 0%, rgba(5, 21, 11, 0.82) 36%, rgba(5, 21, 11, 0.42) 62%, rgba(5, 21, 11, 0.08) 100%),
    url("../img/hero_photo_new.png") center center / cover no-repeat;
}

/* Overrides finais: manter home e internas com o mesmo padrao visual */
.topbar,
.home-page .topbar {
  min-height: 106px !important;
  padding: 0 !important;
}

.nav-wrap,
.topbar-inner,
.home-page .topbar-inner {
  min-height: 106px !important;
  display: flex !important;
  align-items: center !important;
}

.brand,
.home-page .brand {
  width: 166px !important;
  height: auto !important;
  display: flex !important;
  align-items: center !important;
}

.brand img,
.home-page .brand img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

.site-nav,
.home-page .site-nav {
  gap: 24px !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 500 !important;
}

.site-nav a,
.home-page .site-nav a {
  font-size: inherit !important;
  line-height: inherit !important;
  font-weight: 500 !important;
  padding: 44px 0 37px !important;
}

.site-nav a.active,
.home-page .site-nav a.active {
  font-weight: 650 !important;
}

.whatsapp-btn,
.home-page .whatsapp-btn {
  min-height: 38px !important;
  padding: 0 18px !important;
  font-size: 12px !important;
  line-height: 1 !important;
}

.hero-with-slider,
.home-page .hero-with-slider {
  min-height: 560px !important;
}

.home-page .hero-with-slider .hero-inner {
  min-height: 560px !important;
  padding-top: 106px !important;
  padding-bottom: 0 !important;
}

.home-page .proof-strip {
  min-height: 76px !important;
  margin-top: 34px !important;
}

.home-page .proof-item {
  min-height: 76px !important;
}

@media (max-width: 920px) {
  .topbar,
  .home-page .topbar,
  .nav-wrap,
  .topbar-inner,
  .home-page .topbar-inner {
    min-height: 76px !important;
  }

  .brand,
  .home-page .brand {
    width: 150px !important;
  }

  .site-nav,
  .home-page .site-nav {
    gap: 0 !important;
    font-size: 13px !important;
  }

  .site-nav a,
  .home-page .site-nav a {
    padding: 14px 0 !important;
  }

  .hero-with-slider,
  .home-page .hero-with-slider,
  .home-page .hero-with-slider .hero-inner {
    min-height: 610px !important;
  }
}

/* Ajustes finais Baumgarten: slider, navbar e WhatsApp */
.site-nav,
.home-page .site-nav {
  font-weight: 500 !important;
}

.site-nav a,
.home-page .site-nav a {
  font-weight: 500 !important;
  letter-spacing: 0;
}

.site-nav a.active,
.home-page .site-nav a.active {
  font-weight: 650 !important;
}

.hero-with-slider,
.home-page .hero-with-slider {
  background: #06120a !important;
  min-height: 450px;
}

.home-page .hero-with-slider .hero-inner {
  min-height: 450px;
  padding-top: 82px;
  padding-bottom: 0;
}

.hero-slider {
  inset: 0 !important;
}

.hero-slider::after {
  background:
    linear-gradient(90deg, rgba(2, 8, 5, 0.84) 0%, rgba(5, 19, 11, 0.7) 34%, rgba(5, 19, 11, 0.3) 62%, rgba(5, 19, 11, 0.04) 100%),
    linear-gradient(180deg, rgba(2, 8, 5, 0.08) 0%, rgba(2, 8, 5, 0.3) 100%) !important;
}

.hero-slide {
  background-position: center center;
  filter: saturate(1.04) contrast(1.04);
  will-change: opacity, transform;
}

.hero-slide:nth-child(2) {
  background-position: center 42%;
}

.hero-slide:nth-child(3) {
  background-position: center 46%;
}

.whatsapp-btn,
.btn[href*="wa.me"],
.btn-primary[href*="wa.me"],
.home-page .whatsapp-btn,
.home-page .btn[href*="wa.me"] {
  align-items: center !important;
  display: inline-flex !important;
  gap: 8px;
}

.has-wa-icon .wa-icon,
.whatsapp-btn .wa-icon,
.btn[href*="wa.me"] .wa-icon,
.btn-primary[href*="wa.me"] .wa-icon {
  width: 16px !important;
  height: 16px !important;
  display: block;
  flex: 0 0 16px;
  margin: 0 1px 0 0 !important;
}

.has-wa-icon .wa-icon path,
.whatsapp-btn .wa-icon path,
.btn[href*="wa.me"] .wa-icon path,
.btn-primary[href*="wa.me"] .wa-icon path {
  fill: currentColor !important;
  stroke: none !important;
}

.floating-whatsapp {
  right: 28px !important;
  bottom: 26px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
}

.floating-whatsapp .wa-icon,
.floating-whatsapp svg {
  width: 31px !important;
  height: 31px !important;
  display: block;
  margin: 0 !important;
}

.floating-whatsapp .wa-icon path,
.floating-whatsapp svg path {
  fill: currentColor !important;
  stroke: none !important;
}

@media (max-width: 720px) {
  .home-page .hero-with-slider,
  .home-page .hero-with-slider .hero-inner {
    min-height: 560px;
  }

  .home-page .hero-with-slider .hero-inner {
    padding-top: 76px;
  }

  .hero-slider::after {
    background:
      linear-gradient(90deg, rgba(2, 8, 5, 0.9) 0%, rgba(5, 19, 11, 0.78) 56%, rgba(5, 19, 11, 0.42) 100%),
      linear-gradient(180deg, rgba(2, 8, 5, 0.08) 0%, rgba(2, 8, 5, 0.34) 100%) !important;
  }

  .floating-whatsapp {
    right: 18px !important;
    bottom: 18px !important;
  }
}

/* Navbar unificada em todas as paginas */
.topbar,
.home-page .topbar {
  min-height: 104px !important;
  padding: 0 !important;
}

.topbar-inner,
.home-page .topbar-inner {
  min-height: 104px !important;
  display: flex !important;
  align-items: center !important;
}

.brand,
.home-page .brand {
  width: 162px !important;
  height: auto !important;
  display: flex !important;
  align-items: center !important;
}

.brand img,
.home-page .brand img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

.site-nav,
.home-page .site-nav {
  gap: 26px !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 500 !important;
}

.site-nav a,
.home-page .site-nav a {
  font-size: inherit !important;
  line-height: inherit !important;
  font-weight: 500 !important;
  padding: 43px 0 36px !important;
}

.site-nav a.active,
.home-page .site-nav a.active {
  font-weight: 650 !important;
}

.whatsapp-btn,
.home-page .whatsapp-btn {
  min-height: 38px !important;
  padding: 0 18px !important;
  font-size: 12px !important;
  line-height: 1 !important;
}

@media (max-width: 920px) {
  .topbar,
  .home-page .topbar,
  .topbar-inner,
  .home-page .topbar-inner {
    min-height: 76px !important;
  }

  .brand,
  .home-page .brand {
    width: 150px !important;
  }

  .site-nav,
  .home-page .site-nav {
    gap: 0 !important;
    font-size: 13px !important;
  }

  .site-nav a,
  .home-page .site-nav a {
    padding: 14px 0 !important;
  }
}

.page-hero {
  padding: 68px 0;
}

.page-hero h1 {
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.02;
  font-weight: 850;
}

@media (max-width: 920px) {
  .topbar.nav-open .site-nav,
  .home-page .topbar.nav-open .site-nav {
    top: 58px;
  }
}

/* Tipografia alinhada ao PNG de referencia */
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.site-nav,
.whatsapp-btn,
.btn,
.eyebrow,
.proof-item strong,
.proof-item span,
.service-card h3,
.feature-card h3,
.site-footer h3 {
  text-transform: uppercase;
}

h1,
h2 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

.home-page h1 {
  max-width: 500px;
  font-size: clamp(35px, 3.65vw, 48px);
  line-height: 0.98;
  font-weight: 900;
}

.home-page h2 {
  font-size: clamp(30px, 3.05vw, 40px);
  line-height: 1.08;
  font-weight: 850;
}

.home-page .hero-copy p {
  max-width: 430px;
  font-size: 17px;
  line-height: 1.42;
  font-weight: 400;
}

.home-page .site-nav {
  font-size: 12px;
  font-weight: 800;
}

.home-page .whatsapp-btn,
.home-page .btn {
  font-size: 12px;
  font-weight: 900;
}

.eyebrow {
  font-size: 12px;
  font-weight: 900;
}

.proof-item strong {
  font-size: 14px;
  line-height: 1.08;
  font-weight: 900;
}

.proof-item span {
  font-size: 10px;
  line-height: 1.18;
  font-weight: 800;
}

.home-page .service-card h3 {
  font-size: 13px;
  line-height: 1.13;
  font-weight: 900;
}

.home-page .service-card p {
  font-size: 12px;
  line-height: 1.35;
}

.home-page .feature-card h3 {
  font-size: 15px;
  line-height: 1.12;
  font-weight: 900;
}

.home-page .feature-card p {
  font-size: 13px;
  line-height: 1.45;
}

/* Home refinada pelo style guide extraido do PNG */
.home-page .topbar {
  box-shadow: 0 1px 18px rgba(7, 20, 13, 0.06);
}

.home-page .nav-wrap {
  min-height: 58px;
  gap: 18px;
}

.home-page .brand {
  width: 158px;
}

.home-page .site-nav {
  gap: 18px;
  font-size: 11px;
}

.home-page .site-nav a {
  padding: 20px 0 18px;
}

.home-page .site-nav a::after {
  bottom: 10px;
}

.home-page .whatsapp-btn,
.home-page .btn {
  min-height: 38px;
  padding: 0 17px;
  gap: 8px;
  border-radius: 6px;
  font-size: 12px;
}

.wa-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.wa-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .hero {
  min-height: 420px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(4, 22, 12, 0.68) 43%, rgba(4, 22, 12, 0.18)),
    url("../img/hero-photo-clean.png") center center / cover no-repeat;
}

.home-page .hero-inner {
  min-height: 420px;
  align-items: flex-start;
  padding: 70px 0 96px;
}

.home-page .hero-copy {
  max-width: 500px;
}

.home-page h1 {
  max-width: 500px;
  margin-bottom: 15px;
  font-size: clamp(34px, 4vw, 42px);
  line-height: 1.04;
}

.home-page .accent-line {
  width: 110px;
  margin-bottom: 18px;
}

.home-page .hero-copy p {
  max-width: 420px;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.45;
}

.home-page .proof-strip {
  margin-top: -72px;
}

.home-page .proof-grid {
  border-color: rgba(111, 189, 58, 0.28);
  background: rgba(5, 18, 10, 0.82);
}

.home-page .proof-item {
  min-height: 72px;
  gap: 15px;
  padding: 13px 24px;
}

.home-page .proof-item strong {
  font-size: 13px;
}

.home-page .proof-item span {
  font-size: 10px;
}

.line-svg {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: var(--green-400);
}

.line-svg path,
.line-svg circle,
.line-svg line,
.line-svg polyline {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-line {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  color: var(--green-600);
}

.feature-line {
  width: 58px;
  height: 58px;
  margin: 0 auto 20px;
  color: var(--green-400);
}

.home-page .home-services {
  padding-top: 44px;
  padding-bottom: 34px;
}

.home-page .section-head {
  gap: 58px;
  margin-bottom: 28px;
}

.home-page h2 {
  font-size: clamp(29px, 3.4vw, 38px);
}

.home-page .lead {
  font-size: 15px;
}

.home-page .service-card {
  min-height: 158px;
  padding: 19px 14px 16px;
  justify-content: flex-start;
}

.home-page .service-card h3 {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.home-page .service-card p {
  font-size: 12px;
  line-height: 1.42;
}

.home-page .home-about {
  padding: 44px 0;
}

.home-page .feature-card {
  min-height: 206px;
  padding: 24px 18px;
}

.home-page .cta-band {
  padding: 30px 0;
}

.home-page .cta-inner h2 {
  font-size: clamp(24px, 3vw, 32px);
}

@media (max-width: 920px) {
  .home-page .topbar.nav-open .site-nav {
    top: 58px;
  }
}

@media (max-width: 720px) {
  .home-page .brand {
    width: 168px;
  }

  .home-page .hero,
  .home-page .hero-inner {
    min-height: 560px;
  }

  .home-page .hero-inner {
    padding: 72px 0 58px;
  }

  .home-page .proof-strip {
    margin-top: 0;
  }
}

/* Hero slider e navbar final */
.site-nav,
.home-page .site-nav {
  font-weight: 500;
}

.site-nav a,
.home-page .site-nav a {
  font-weight: inherit;
}

.site-nav a.active,
.home-page .site-nav a.active {
  font-weight: 650;
}

.whatsapp-btn,
.btn,
.home-page .whatsapp-btn,
.home-page .btn {
  line-height: 1;
}

.whatsapp-btn svg,
.btn svg {
  width: 16px;
  height: 16px;
  display: block;
  flex: 0 0 auto;
}

.whatsapp-btn .wa-icon,
.btn .wa-icon {
  margin-top: -1px;
}

.whatsapp-btn svg path,
.btn svg path {
  fill: currentColor;
  stroke: none;
}

.floating-whatsapp svg path {
  fill: currentColor;
  stroke: none;
}

.hero-with-slider,
.home-page .hero-with-slider {
  position: relative;
  overflow: hidden;
  background: #07140d;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #07140d;
}

.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(2, 9, 5, 0.92) 0%, rgba(5, 21, 11, 0.84) 35%, rgba(5, 21, 11, 0.42) 62%, rgba(5, 21, 11, 0.12) 100%),
    linear-gradient(180deg, rgba(3, 14, 8, 0.12), rgba(3, 14, 8, 0.22));
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s ease, transform 5.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-with-slider .hero-inner {
  position: relative;
  z-index: 3;
}

.home-page .hero-with-slider {
  min-height: 420px;
}

.home-page .hero-with-slider .hero-inner {
  min-height: 420px;
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(2, 9, 5, 0.9) 0%, rgba(5, 21, 11, 0.82) 36%, rgba(5, 21, 11, 0.42) 62%, rgba(5, 21, 11, 0.08) 100%),
    url("../img/hero_photo_new.png") center center / cover no-repeat;
}

/* Encaixe final da primeira dobra */
.home-page .hero-with-slider {
  min-height: 640px !important;
}

.home-page .hero-with-slider .hero-inner {
  min-height: 640px !important;
  padding-top: 108px !important;
  padding-bottom: 142px !important;
}

.home-page .proof-strip {
  position: relative !important;
  z-index: 6 !important;
  margin-top: -54px !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

.home-page .proof-strip .container {
  max-width: 1180px !important;
}

.home-page .proof-grid {
  min-height: 76px !important;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.2) !important;
}

.home-page .proof-item {
  min-height: 76px !important;
}

.home-page .home-services {
  padding-top: 96px !important;
}

@media (max-width: 920px) {
  .home-page .hero-with-slider,
  .home-page .hero-with-slider .hero-inner {
    min-height: 620px !important;
  }

  .home-page .proof-strip {
    margin-top: -48px !important;
  }

  .home-page .home-services {
    padding-top: 84px !important;
  }
}

@media (max-width: 920px) {
  .topbar,
  .home-page .topbar {
    position: sticky !important;
    top: 0 !important;
    z-index: 50 !important;
  }

  .nav-wrap,
  .home-page .nav-wrap {
    min-height: 76px !important;
    position: relative !important;
  }

  .menu-toggle {
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 44px !important;
    margin-left: auto !important;
    z-index: 52 !important;
  }

  .topbar .whatsapp-btn,
  .home-page .topbar .whatsapp-btn,
  .site-nav,
  .home-page .site-nav {
    display: none !important;
  }

  .topbar.nav-open .site-nav,
  .home-page .topbar.nav-open .site-nav {
    position: absolute !important;
    top: calc(100% - 1px) !important;
    left: 20px !important;
    right: 20px !important;
    display: grid !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 8px 0 !important;
    background: #ffffff !important;
    border: 1px solid rgba(20, 54, 21, 0.1) !important;
    border-radius: 8px !important;
    box-shadow: 0 18px 42px rgba(25, 51, 31, 0.16) !important;
    z-index: 51 !important;
  }

  .topbar.nav-open .site-nav a,
  .home-page .topbar.nav-open .site-nav a {
    display: block !important;
    padding: 15px 18px !important;
    border-bottom: 1px solid rgba(20, 54, 21, 0.08) !important;
    color: var(--ink) !important;
  }

  .topbar.nav-open .site-nav a:last-child,
  .home-page .topbar.nav-open .site-nav a:last-child {
    border-bottom: 0 !important;
  }

  .topbar.nav-open .site-nav a::after,
  .home-page .topbar.nav-open .site-nav a::after {
    display: none !important;
  }
}
