:root {
  --green: #35564a;
  --green-dark: #29463c;
  --green-deep: #20382f;
  --light: #d9dad5;
  --light-2: #eef0eb;
  --white: #f8faf7;
  --text: #25342e;
  --muted: #66716c;
  --border-dark: rgba(255, 255, 255, .16);
  --border-light: rgba(53, 86, 74, .16);
  --shadow: 0 24px 60px rgba(23, 41, 34, .16);
  --radius: 28px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--light);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

.section-space {
  padding: 120px 0;
}

.section-dark {
  background: var(--green);
  color: var(--white);
}

.section-light {
  background: var(--light);
  color: var(--text);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .76rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .78);
}

.eyebrow.dark {
  color: var(--green);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 58px;
}

.section-heading h2,
.about-content h2,
.faq-intro h2,
.cta-card h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.15rem, 3.5vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: -.03em;
}

.section-heading p,
.faq-intro p,
.about-content p {
  margin-top: 20px;
  color: #53615b;
  line-height: 1.8;
  font-size: 1.03rem;
}

.section-heading.light p {
  color: rgba(255, 255, 255, .67);
}

/* NAVBAR */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: 82px;
  transition: .35s ease;
}

.navbar.scrolled {
  background: rgba(32, 56, 47, .92);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
  height: 70px;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.05rem;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: rgba(255, 255, 255, .78);
  font-size: .91rem;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: .25s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 17px;
  background: var(--light);
  color: var(--green);
  border-radius: 999px;
  font-weight: 700;
  font-size: .88rem;
  transition: .25s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: #fff;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.75rem;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: 150px 0 82px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  max-width: 700px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.6rem, 4.0vw, 2.6rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 500;
}

.hero-content h1 span {
  color: var(--light);
}

.hero-content>p {
  max-width: 640px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, .73);
  font-size: 1.08rem;
  line-height: 1.8;
}

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

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: .25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-light {
  background: var(--light);
  color: var(--green-deep);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, .22);
  color: #fff;
  background: rgba(255, 255, 255, .05);
}

.hero-proof {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatars {
  display: flex;
}

.avatars span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-left: -8px;
  background: var(--light);
  color: var(--green);
  border: 2px solid var(--green);
  font-size: .72rem;
  font-weight: 700;
}

.avatars span:first-child {
  margin-left: 0;
}

.stars {
  color: #e7e5c5;
  letter-spacing: 3px;
  font-size: .78rem;
}

.hero-proof small {
  color: rgba(255, 255, 255, .58);
}

.hero-visual {
  position: relative;
}

.image-frame {
  position: relative;
  min-height: 640px;
  border-radius: 24px;
  overflow: hidden;
}

.image-frame>img,
.about-image>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.image-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .025)),
    var(--green-dark);
  color: rgba(255, 255, 255, .72);
  text-align: center;
}

.image-placeholder i {
  font-size: 3rem;
  opacity: .8;
}

.image-placeholder strong {
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
}

.image-placeholder span {
  font-size: .8rem;
}

.floating-badge {
  position: absolute;
  z-index: 4;
  min-width: 225px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  color: #fff;
}

.badge-top {
  top: 15%;
  left: -55px;
}

.badge-bottom {
  right: -42px;
  bottom: 13%;
}

.icon-circle {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .12);
  border-radius: 50%;
}

.floating-badge strong,
.floating-badge small {
  display: block;
}

.floating-badge strong {
  font-size: .88rem;
}

.floating-badge small {
  color: rgba(255, 255, 255, .62);
  margin-top: 2px;
  font-size: .75rem;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .45;
}

.orb-one {
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, .09);
  left: -230px;
  top: 120px;
}

.orb-two {
  width: 680px;
  height: 680px;
  border: 1px solid rgba(255, 255, 255, .07);
  right: -400px;
  bottom: -280px;
}

/* ESPELHO / GLASS */
.mirror-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .055));
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .2),
    0 16px 40px rgba(18, 39, 31, .14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* MÉTRICAS */
.metrics-section {
  background: var(--light);
  border-bottom: 1px solid var(--border-light);
}

.metrics-grid {
  min-height: 150px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border-light);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--green);
}

.metric strong small {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  margin-left: 2px;
}

.metric span {
  margin-top: 9px;
  color: var(--muted);
  font-size: .9rem;
}

/* SERVIÇOS */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  min-height: 410px;
  padding: 30px;
  border-radius: var(--radius);
  position: relative;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .28));
  border: 1px solid rgba(255, 255, 255, .58);
  color: var(--text);
  transition: transform .35s ease, box-shadow .35s ease;
}

.service-card:hover,
.benefit-card:hover,
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-card.featured {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  transform: translateY(-18px);
}

.service-card.featured:hover {
  transform: translateY(-24px);
}

.service-number {
  position: absolute;
  right: 28px;
  top: 26px;
  color: rgba(53, 86, 74, .32);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
}

.featured .service-number {
  color: rgba(255, 255, 255, .35);
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(53, 86, 74, .1);
  color: var(--green);
  font-size: 1.5rem;
  margin-bottom: 65px;
}

.featured .service-icon {
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.service-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.service-card p {
  color: #64706b;
  line-height: 1.75;
  font-size: .95rem;
}

.featured p {
  color: rgba(255, 255, 255, .67);
}

.service-tag {
  margin-top: auto;
  padding-top: 30px;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  color: var(--green);
}

.featured .service-tag {
  color: var(--light);
}

/* PORTFÓLIO */
.portfolio-stack {
  display: grid;
  gap: 34px;
}

.project-card {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 50px;
  align-items: center;
  padding: 34px;
  border-radius: 34px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .1);
}

.project-card.reverse {
  grid-template-columns: 1.22fr .78fr;
}

.project-card.reverse .project-info {
  order: 2;
}

.project-info>span {
  color: var(--light);
  font-size: .76rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.project-info h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.55rem);
  margin: 15px 0;
}

.project-info p {
  color: rgba(255, 255, 255, .64);
  line-height: 1.75;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.project-tags small {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  color: rgba(255, 255, 255, .78);
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 4 / 5;
  background: var(--green-dark);
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .5s ease, transform .6s ease;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide img[src=""],
.slide img:not([src]) {
  display: none;
}

.slide-placeholder {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .12), transparent 35%),
    linear-gradient(145deg, #2d4b40, #20382f);
  color: rgba(255, 255, 255, .65);
  letter-spacing: .08em;
  font-size: .82rem;
}

.slide img:not([src])+.slide-placeholder {
  z-index: 1;
}

.carousel-btn {
  position: absolute;
  bottom: 20px;
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(25, 42, 36, .55);
  backdrop-filter: blur(10px);
  color: #fff;
  cursor: pointer;
  transition: .25s ease;
}

.carousel-btn:hover {
  background: var(--light);
  color: var(--green);
}

.carousel-btn.prev {
  right: 76px;
}

.carousel-btn.next {
  right: 20px;
}

.carousel-dots {
  position: absolute;
  left: 20px;
  bottom: 31px;
  z-index: 5;
  display: flex;
  gap: 6px;
}

.carousel-dot {
  width: 22px;
  height: 3px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .32);
  cursor: pointer;
  transition: .25s ease;
}

.carousel-dot.active {
  width: 38px;
  background: #fff;
}

/* SOBRE */
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 82px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image {
  min-height: 620px;
  border-radius: 28px 160px 28px 28px;
  overflow: hidden;
  position: relative;
  background: var(--green);
  box-shadow: var(--shadow);
}

.about-floating {
  position: absolute;
  right: -38px;
  bottom: 38px;
  color: #fff;
  padding: 18px 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 270px;
}

.about-floating i {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
}

.about-floating strong,
.about-floating small {
  display: block;
}

.about-floating small {
  color: rgba(255, 255, 255, .6);
  margin-top: 2px;
}

.about-content p+p {
  margin-top: 14px;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 12px 24px;
  margin: 30px 0;
}

.about-points span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .92rem;
  color: #475650;
}

.about-points i {
  color: var(--green);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 700;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(53, 86, 74, .3);
}

/* BENEFÍCIOS */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.benefit-card {
  min-height: 235px;
  padding: 26px;
  border-radius: 24px;
  transition: .3s ease;
}

.benefit-card i {
  font-size: 1.6rem;
  color: var(--light);
}

.benefit-card h3 {
  margin: 46px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.45rem;
}

.benefit-card p {
  color: rgba(255, 255, 255, .62);
  line-height: 1.7;
  font-size: .9rem;
}

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

.testimonial-card {
  min-height: 430px;
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .48);
  border: 1px solid rgba(255, 255, 255, .6);
  display: flex;
  flex-direction: column;
  transition: .3s ease;
}

.featured-testimonial {
  background: var(--green);
  color: #fff;
  transform: translateY(-18px);
}

.featured-testimonial:hover {
  transform: translateY(-24px);
}

.quote-mark {
  font-family: "Space Grotesk", sans-serif;
  font-size: 4.4rem;
  line-height: .75;
  color: rgba(53, 86, 74, .2);
}

.featured-testimonial .quote-mark {
  color: rgba(255, 255, 255, .18);
}

.dark-stars {
  color: var(--green);
}

.testimonial-card>p {
  margin: 24px 0 30px;
  line-height: 1.8;
  color: #53615b;
}

.featured-testimonial>p {
  color: rgba(255, 255, 255, .72);
}

.testimonial-person {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.person-avatar {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(53, 86, 74, .1);
  color: var(--green);
  font-weight: 700;
}

.featured-testimonial .person-avatar {
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.testimonial-person strong,
.testimonial-person small {
  display: block;
}

.testimonial-person small {
  color: #75817c;
  margin-top: 2px;
}

.featured-testimonial .testimonial-person small {
  color: rgba(255, 255, 255, .55);
}

/* CTA */
.cta-section {
  padding: 34px 0;
}

.cta-card {
  padding: 64px;
  border-radius: 34px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 50px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .025));
  border: 1px solid rgba(255, 255, 255, .12);
}

.cta-card p {
  margin-top: 18px;
  max-width: 620px;
  color: rgba(255, 255, 255, .64);
  line-height: 1.7;
}

.cta-whatsapp {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--light);
  color: var(--green);
  border-radius: 22px;
  transition: .3s ease;
}

.cta-whatsapp:hover {
  transform: translateY(-5px);
  background: #fff;
}

.cta-whatsapp>i:first-child {
  font-size: 1.75rem;
}

.cta-whatsapp>i:last-child {
  margin-left: auto;
}

.cta-whatsapp small,
.cta-whatsapp strong {
  display: block;
}

.cta-whatsapp small {
  opacity: .65;
  font-size: .75rem;
  margin-bottom: 2px;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 110px;
}

.faq-list {
  border-top: 1px solid var(--border-light);
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-question {
  width: 100%;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: transparent;
  border: 0;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  font-weight: 700;
  font-size: 1.03rem;
}

.faq-question i {
  transition: .3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}

.faq-answer p {
  overflow: hidden;
  color: var(--muted);
  line-height: 1.75;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
  padding-bottom: 24px;
}

/* FOOTER */
.footer {
  background: var(--green-deep);
  color: #fff;
  padding: 70px 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr .8fr .5fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 50px;
}

.footer-brand p {
  max-width: 300px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .54);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, .65);
}

.footer-links a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .8);
  transition: .25s ease;
}

.footer-social a:hover {
  background: var(--light);
  color: var(--green);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, .42);
  font-size: .82rem;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .66);
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .75s cubic-bezier(.2, .65, .3, 1),
    transform .75s cubic-bezier(.2, .65, .3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: .12s;
}

/* RESPONSIVO */
@media (max-width: 1050px) {
  .nav-links {
    gap: 18px;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid,
  .about-grid {
    gap: 45px;
  }

  .image-frame {
    min-height: 470px;
    border-radius: 18px;
  }

  .services-grid,
  .testimonials-grid {
    gap: 14px;
  }

  .project-card,
  .project-card.reverse {
    grid-template-columns: 1fr 1.2fr;
  }

  .project-card.reverse .project-info {
    order: 0;
  }
}

@media (max-width: 820px) {
  .section-space {
    padding: 88px 0;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    inset: 70px 16px auto 16px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(32, 56, 47, .97);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .1);
    display: grid;
    gap: 0;
    opacity: 0;
    transform: translateY(-16px);
    visibility: hidden;
    transition: .25s ease;
  }

  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .nav-links a {
    padding: 14px 6px;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
  }

  .hero-grid,
  .about-grid,
  .faq-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 580px;
    margin: -40px auto 0;
    width: 100%;
  }

  .metrics-grid {
    min-height: 130px;
  }

  .metric strong {
    font-size: 2.5rem;
  }

  .services-grid,
  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card.featured,
  .featured-testimonial {
    transform: none;
  }

  .project-card,
  .project-card.reverse {
    grid-template-columns: 1fr;
  }

  .project-info {
    padding: 10px 4px 0;
  }

  .faq-intro {
    position: static;
  }

  .cta-card {
    padding: 45px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-social {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 26px, 1180px);
  }

  .navbar {
    height: 70px;
  }

  .hero {
    padding: 102px 0 0px;
  }

  .hero {
    min-height: auto;
    padding: 110px 0 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
  }

  .hero-content h1 {
    max-width: 19ch;
    font-size: clamp(2.05rem, 8.5vw, 2.55rem);
    line-height: 1.07;
    letter-spacing: -0.04em;
  }

  .hero-content>p {
    margin: 22px 0 28px;
    font-size: .96rem;
    line-height: 1.7;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-proof {
    align-items: flex-start;
  }

  .image-frame {
    min-height: 470px;
    border-radius: 18px;
  }

  .floating-badge {
    min-width: 190px;
    padding: 12px;
  }

  .badge-top {
    top: 9%;
    left: -5px;
  }

  .badge-bottom {
    right: -4px;
    bottom: 9%;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
    padding: 8px 0;
  }

  .metric {
    min-height: 116px;
    border-right: 0;
    border-bottom: 1px solid var(--border-light);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .services-grid,
  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 350px;
  }

  .project-card {
    padding: 16px;
    gap: 26px;
    border-radius: 26px;
  }

  .about-image {
    min-height: 500px;
    border-radius: 24px 110px 24px 24px;
  }

  .about-floating {
    right: 10px;
    left: 10px;
    bottom: 15px;
    max-width: none;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .cta-card {
    padding: 32px 22px;
  }

  .cta-whatsapp {
    min-height: 80px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* =========================================
   REFINAMENTOS PREMIUM
   ========================================= */
body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--green-deep);
  color: var(--white);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
  width: 0;
  height: 2px;
  background: var(--light);
  box-shadow: 0 0 16px rgba(217, 218, 213, .55);
  pointer-events: none;
}

.nav-links a.active {
  color: #fff;
}

.nav-links a.active::after {
  width: 100%;
}

.section-dark {
  background-image:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, .045), transparent 24%),
    radial-gradient(circle at 88% 82%, rgba(217, 218, 213, .045), transparent 25%);
}

.btn,
.nav-cta,
.cta-whatsapp,
.text-link {
  position: relative;
  overflow: hidden;
}

.btn i,
.nav-cta i,
.cta-whatsapp>i:last-child,
.text-link i {
  transition: transform .25s ease;
}

.btn:hover i,
.nav-cta:hover i,
.cta-whatsapp:hover>i:last-child,
.text-link:hover i {
  transform: translateX(4px);
}

.service-card,
.benefit-card,
.testimonial-card,
.project-card {
  isolation: isolate;
  overflow: hidden;
}

.service-card::before,
.benefit-card::before,
.testimonial-card::before,
.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, .11) 48%, transparent 72%);
  transform: translateX(-120%);
  transition: transform .8s cubic-bezier(.2, .7, .2, 1);
  pointer-events: none;
}

.service-card:hover::before,
.benefit-card:hover::before,
.testimonial-card:hover::before,
.project-card:hover::before {
  transform: translateX(120%);
}

.project-card {
  position: relative;
  transition: transform .35s ease, border-color .35s ease, background .35s ease, box-shadow .35s ease;
}

.project-card.revealed:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, .19);
  background: rgba(255, 255, 255, .075);
  box-shadow: 0 26px 70px rgba(17, 34, 28, .18);
}

.carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
  border-radius: inherit;
}

.slide.active img {
  animation: portfolioZoom 4.5s ease-out both;
}

@keyframes portfolioZoom {
  from {
    transform: scale(1.018);
  }

  to {
    transform: scale(1);
  }
}

.service-icon,
.person-avatar,
.icon-circle {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.metric strong {
  letter-spacing: -.045em;
}

@media (max-width: 600px) {
  .eyebrow {
    margin-bottom: 15px;
    font-size: .69rem;
    letter-spacing: .12em;
  }

  .hero-content h1 span {
    display: block;
  }

  .hero-proof {
    margin-top: 26px;
  }

  .section-heading h2,
  .about-content h2,
  .faq-intro h2,
  .cta-card h2 {
    font-size: clamp(1.9rem, 8vw, 2.35rem);
    line-height: 1.08;
  }

  .project-info h3 {
    font-size: 1.8rem;
  }

  .project-card {
    padding: 14px;
  }

  .carousel-btn {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 390px) {
  .hero-content h1 {
    font-size: 2rem;
  }
}

.metric .metric-number-big {
  font-size: 1.5rem;
  line-height: 1;
}

.metric .metric-number-big .counter {
  font-size: inherit;
  margin: 0;
}

.metric .metric-number-big small {
  font-size: 1.7rem;
  vertical-align: top;
  margin-left: 3px;
}



/* =========================================
   AJUSTES — HERO CLARO + CTAs INTERMEDIÁRIOS
   ========================================= */
.hero.section-light {
  background: var(--light);
  color: var(--text);
}

.hero.section-light .eyebrow {
  color: var(--green);
}

.hero.section-light .hero-content h1 {
  color: var(--text);
}

.hero.section-light .hero-content h1 span {
  color: var(--green);
}

.hero.section-light .hero-content>p {
  color: #53615b;
}

.hero.section-light .btn-light {
  background: var(--green);
  color: var(--white);
}

.hero.section-light .btn-light:hover {
  background: var(--green-deep);
}

.hero.section-light .btn-ghost {
  border-color: rgba(53, 86, 74, .22);
  color: var(--green-deep);
  background: rgba(255, 255, 255, .28);
}

.hero.section-light .btn-ghost:hover {
  background: rgba(255, 255, 255, .62);
  border-color: rgba(53, 86, 74, .34);
}

.hero.section-light .avatars span {
  background: var(--green);
  color: var(--white);
  border-color: var(--light);
}

.hero.section-light .stars {
  color: var(--green);
}

.hero.section-light .hero-proof small {
  color: var(--muted);
}

.hero.section-light .orb-one,
.hero.section-light .orb-two {
  border-color: rgba(53, 86, 74, .11);
}

/* Navbar legível sobre o hero claro; ao rolar mantém o visual escuro original. */
.navbar:not(.scrolled) .brand,
.navbar:not(.scrolled) .nav-links a,
.navbar:not(.scrolled) .menu-toggle {
  color: var(--green-deep);
}

.navbar:not(.scrolled) .brand-mark {
  border-color: rgba(53, 86, 74, .28);
}

.navbar:not(.scrolled) .nav-links a::after {
  background: var(--green);
}

.navbar:not(.scrolled) .nav-cta {
  background: var(--green);
  color: var(--white);
}

.navbar:not(.scrolled) .nav-cta:hover {
  background: var(--green-deep);
}

/* Mantém o menu mobile com contraste quando ele é aberto. */
@media (max-width: 820px) {
  .navbar:not(.scrolled) .nav-links.open a {
    color: rgba(255, 255, 255, .82);
  }

  .navbar:not(.scrolled) .nav-links.open a::after {
    background: #fff;
  }
}

.cta-section-inline {
  padding: 42px 0;
}

.cta-section-inline+.section-light {
  border-top: 1px solid rgba(53, 86, 74, .08);
}

@media (max-width: 600px) {
  .cta-section-inline {
    padding: 26px 0;
  }
}

/* REMOVE O ESPAÇO GRANDE ENTRE NAVBAR E HERO */
@media (min-width: 821px) {
  .hero {
    min-height: auto !important;
    padding: 30px 0 60px !important;
    align-items: flex-start !important;
  }

  .hero-grid {
    align-items: center;
  }
}