:root {
  --green: #2b4c3b;
  --green-dark: #102017;
  --green-light: #dce9e2;
  --black: #111914;
  --gray: #6d756f;
  --white: #ffffff;
  --off: #f4f7f3;
  --border: rgba(16, 32, 23, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font-family: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

/* TOPO */
.topbar {
  background: var(--green);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.topbar-content {
  min-height: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

/* LOGO */
.logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  flex-shrink: 0;
}

.logo img {
  width: 360px;
  max-height: 126px;
  object-fit: contain;
  display: block;
}

.footer-logo img {
  width: 190px;
  max-height: 70px;
  object-fit: contain;
  display: block;
}

/* MENU */
.menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.menu a {
  font-family: "Rajdhani", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  position: relative;
}

.menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  background: var(--green);
  left: 0;
  bottom: -8px;
  transition: 0.3s;
}

.menu a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--green);
  border-radius: 12px;
  cursor: pointer;
  padding: 10px;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  border-radius: 10px;
}

/* BOTÕES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  transition: 0.3s;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-green {
  background: var(--green);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--green-dark);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

/* HERO */
.hero {
  min-height: calc(100vh - 128px);
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.76) 0%,
      rgba(0, 0, 0, 0.62) 42%,
      rgba(0, 0, 0, 0.25) 100%
    ),
    url("img/Frame 21.png") center/cover no-repeat;
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,0.12), transparent 28%),
    linear-gradient(0deg, rgba(16,32,23,0.35), rgba(16,32,23,0));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 90px 0;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  background: var(--green-light);
  padding: 9px 16px;
  border-radius: 999px;
}

.eyebrow {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.section-tag.light {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.hero h1,
.section-title h2,
.about h2,
.presence h2,
.service h2,
.bndes h2,
.testimonials-title h2,
.contact h2 {
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  letter-spacing: -1.8px;
}

.hero h1 {
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.92;
  margin: 26px 0;
  max-width: 900px;
}

.hero p {
  max-width: 680px;
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255,255,255,0.86);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.hero-stats {
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 720px;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.08);
  border-radius: 28px;
  overflow: hidden;
}

.hero-stats div {
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.hero-stats div:last-child {
  border-right: none;
}

.hero-stats strong {
  display: block;
  font-family: "Rajdhani", sans-serif;
  font-size: 28px;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
}

/* FEATURES */
.features {
  margin-top: -58px;
  position: relative;
  z-index: 10;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  box-shadow: 0 30px 80px rgba(16, 32, 23, 0.14);
  border-radius: 30px;
  overflow: hidden;
}

.feature-card {
  padding: 34px 28px;
  border-right: 1px solid var(--border);
  min-height: 230px;
}

.feature-card:last-child {
  border-right: none;
}

.feature-card.active {
  background: var(--green);
  color: var(--white);
}

.feature-card span {
  font-family: "Rajdhani", sans-serif;
  color: var(--green);
  font-size: 28px;
  font-weight: 800;
}

.feature-card.active span {
  color: rgba(255,255,255,0.7);
}

.feature-card h3 {
  font-family: "Rajdhani", sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  margin: 18px 0 12px;
}

.feature-card p {
  color: var(--gray);
  line-height: 1.7;
}

.feature-card.active p {
  color: rgba(255,255,255,0.78);
}

/* SOBRE */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about h2 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  margin: 24px 0;
}

.about p,
.service p,
.bndes p,
.testimonials-title p,
.contact-info p {
  color: var(--gray);
  line-height: 1.8;
  font-size: 17px;
}

.about-image {
  position: relative;
}

.about-image img {
  height: 560px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: 0 34px 90px rgba(16,32,23,0.18);
}

.image-badge {
  position: absolute;
  left: -34px;
  bottom: 42px;
  background: var(--green);
  color: var(--white);
  width: 170px;
  height: 170px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  box-shadow: 0 20px 50px rgba(43, 76, 59, 0.35);
}

.image-badge strong {
  font-family: "Rajdhani", sans-serif;
  font-size: 54px;
  line-height: 1;
}

.image-badge span {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

/* MISSÃO */
.mission {
  background: var(--off);
}

.mission-grid,
.benefits-grid,
.logos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mission-card,
.benefit-card,
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 38px;
  transition: 0.3s;
}

.mission-card:hover,
.benefit-card:hover,
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 60px rgba(16, 32, 23, 0.1);
}

.icon {
  width: 58px;
  height: 58px;
  background: var(--green-light);
  color: var(--green);
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-size: 24px;
  font-weight: 800;
}

.mission-card h3,
.benefit-card h3 {
  font-family: "Rajdhani", sans-serif;
  font-size: 32px;
  text-transform: uppercase;
  margin: 24px 0 10px;
}

.mission-card p,
.benefit-card p,
.testimonial-card p {
  color: var(--gray);
  line-height: 1.8;
}

/* PRESENÇA */
.presence {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}

.presence-image {
  position: relative;
  overflow: hidden;
}

.presence-image img {
  height: 100%;
  object-fit: cover;
  filter: brightness(0.62);
}

.presence-caption {
  position: absolute;
  left: 12%;
  bottom: 12%;
  max-width: 430px;
  color: var(--white);
}

.presence-caption span {
  font-family: "Rajdhani", sans-serif;
  display: block;
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.presence-caption p {
  color: rgba(255,255,255,0.86);
  line-height: 1.75;
}

.presence-content {
  background:
    radial-gradient(circle at 90% 10%, rgba(255,255,255,0.11), transparent 30%),
    var(--green);
  color: var(--white);
  padding: 110px 14%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.presence-content h2 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  margin: 24px 0;
}

.presence-content p {
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  font-size: 17px;
  margin-bottom: 28px;
}

/* SERVIÇO */
.service {
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
}

.service-card {
  background: var(--off);
  border-radius: 34px;
  padding: 60px;
}

.service-card span {
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}

.service-card h2 {
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1;
  margin: 18px 0 22px;
}

.service-highlight {
  border-radius: 34px;
  min-height: 520px;
  color: var(--white);
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(16,32,23,0.1), rgba(16,32,23,0.85)),
    url("img/Rectangle 13.png") center/cover;
}

.service-highlight h3 {
  font-family: "Rajdhani", sans-serif;
  font-size: 42px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 14px;
}

.service-highlight p {
  color: rgba(255,255,255,0.8);
}

/* BNDES */
.bndes {
  position: relative;
  background: var(--green-dark);
  color: var(--white);
  overflow: hidden;
}

.bndes-bg {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background: url("img/Banner BNDES.png") center/cover no-repeat;
}

.bndes::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16,32,23,0.98), rgba(43,76,59,0.82));
}

.bndes-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.bndes h2 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
  margin: 24px 0;
}

.bndes p {
  color: rgba(255,255,255,0.78);
  max-width: 660px;
}

.bndes-panel {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(16px);
  border-radius: 34px;
  padding: 30px;
  display: grid;
  gap: 18px;
}

.bndes-panel div {
  background: rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 28px;
}

.bndes-panel strong {
  font-family: "Rajdhani", sans-serif;
  display: block;
  font-size: 52px;
  line-height: 1;
}

.bndes-panel span {
  color: rgba(255,255,255,0.76);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
}

/* BENEFÍCIOS */
.section-title {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1;
  margin-top: 20px;
}

.benefits {
  background: var(--off);
}

.clients {
  background: var(--white);
}

.logos-grid {
  grid-template-columns: repeat(6, 1fr);
}

.logos-grid div {
  height: 110px;
  border-radius: 24px;
  background: var(--off);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--gray);
  font-weight: 800;
}

/* DEPOIMENTOS */
.testimonials {
  background: var(--off);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 60px;
}

.testimonials-title {
  position: sticky;
  top: 130px;
  height: fit-content;
}

.testimonials-title h2 {
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.98;
  margin: 24px 0;
}

.testimonial-list {
  display: grid;
  gap: 24px;
}

.testimonial-card strong {
  display: block;
  margin-top: 24px;
  font-family: "Rajdhani", sans-serif;
  font-size: 26px;
  text-transform: uppercase;
}

.testimonial-card span {
  color: var(--green);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
}

/* CONTATO */
.contact {
  background: var(--green);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact h2 {
  font-size: clamp(40px, 5vw, 70px);
  line-height: 0.98;
  margin: 24px 0 38px;
}

.contact-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  display: grid;
  gap: 6px;
}

.contact-item strong {
  font-family: "Rajdhani", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}

.contact-item span {
  color: rgba(255,255,255,0.76);
}

.contact-form {
  background: var(--white);
  color: var(--black);
  border-radius: 34px;
  padding: 42px;
  display: grid;
  gap: 16px;
}

.contact-form h3 {
  font-family: "Rajdhani", sans-serif;
  font-size: 38px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 20px;
  outline: none;
  font-size: 15px;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

/* FOOTER */
.footer {
  background: var(--green-dark);
  color: var(--white);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.6fr;
  gap: 50px;
  padding-bottom: 50px;
}

.footer p {
  color: rgba(255,255,255,0.64);
  line-height: 1.7;
  max-width: 420px;
  margin-top: 18px;
}

.footer h4 {
  font-family: "Rajdhani", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer a:not(.logo) {
  display: block;
  color: rgba(255,255,255,0.68);
  margin: 10px 0;
}

.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: rgba(255,255,255,0.54);
  padding: 24px;
  font-size: 14px;
}

/* WHATSAPP */
.whatsapp {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 999;
  width: 72px;
  height: 72px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.35);
}

/* REMOVE QUALQUER ICONE ANTIGO */
.whatsapp::before {
  content: none;
}

/* AJUSTE DO SVG */
.whatsapp svg {
  width: 34px;
  height: 34px;
}

/* ANIMAÇÕES */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVO TABLET */
@media (max-width: 1000px) {
  .desktop-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .menu {
    position: fixed;
    top: 128px;
    right: -100%;
    width: min(360px, 90%);
    height: calc(100vh - 128px);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 38px;
    gap: 26px;
    box-shadow: -20px 30px 70px rgba(16,32,23,0.18);
    transition: 0.35s;
  }

  .menu.active {
    right: 0;
  }

  .features-grid,
  .mission-grid,
  .benefits-grid,
  .testimonials-grid,
  .contact-grid,
  .footer-grid,
  .about-grid,
  .bndes-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .presence {
    grid-template-columns: 1fr;
  }

  .presence-image {
    min-height: 520px;
  }

  .logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-title {
    position: static;
  }

  .about-image img {
    height: 440px;
  }

  .image-badge {
    left: 24px;
  }
}
/* RESPONSIVO CELULAR */
@media (max-width: 720px) {
  .topbar {
    display: none;
  }

  .container {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .nav {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
  }

  .logo {
    margin: 0;
    flex-shrink: 0;
  }

  .logo img {
    width: 300px;
    max-height: 100px;
    object-fit: contain;
  }

  .menu-toggle {
    display: block;
    width: 54px;
    height: 54px;
    margin-left: auto;
    flex-shrink: 0;
  }

  .footer-logo img {
    width: 160px;
  }

  .menu {
    top: 76px;
    height: calc(100vh - 76px);
  }

  .section {
    padding: 80px 0;
  }

  .hero {
    min-height: calc(100vh - 76px);
  }

  .hero-bg {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.66) 55%,
        rgba(0, 0, 0, 0.48) 100%
      ),
      url("img/Frame 21.png") center/cover no-repeat;
  }

  .hero-content {
    padding: 70px 14px;
  }

  .hero h1 {
    font-size: 48px;
    line-height: 0.95;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }

  .hero-stats div:last-child {
    border-bottom: none;
  }

  .features {
    margin-top: 0;
    padding: 30px 0;
    background: var(--off);
  }

  .features-grid {
    grid-template-columns: 1fr;
    box-shadow: none;
  }

  .feature-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .feature-card:last-child {
    border-bottom: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .about-image img {
    height: 360px;
  }

  .image-badge {
    width: 130px;
    height: 130px;
    left: 18px;
    bottom: 24px;
  }

  .image-badge strong {
    font-size: 42px;
  }

  .presence-content {
    padding: 80px 30px;
  }

  .presence-image {
    min-height: 460px;
  }

  .service-card,
  .contact-form,
  .mission-card,
  .benefit-card,
  .testimonial-card {
    padding: 30px;
  }

  .logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer {
    padding-top: 50px;
  }

  .whatsapp {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: fixed !important;
    width: 62px;
    height: 62px;
    right: 18px;
    bottom: 18px;
    z-index: 999999;
  }

  .whatsapp svg {
    width: 30px;
    height: 30px;
  }
}