@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100&display=swap');

:root {
  --custom-primary: #2cb44e;
  --custom-primary-dark: #23913f;
  --custom-white: #ffffff;
  --custom-black: #000000;
  --font-family: 'Raleway', sans-serif;
}

/* GLOBAL */
body {
  font-family: var(--font-family);
  color: var(--custom-black);
}

strong {
  font-weight: 700;
}

/* BOTÕES */
.btn-custom-primary {
  background-color: var(--custom-primary);
  border: 2px solid var(--custom-primary);
  color: #fff;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-custom-primary:hover {
  background-color: var(--custom-primary-dark);
  border-color: var(--custom-primary-dark);
  transform: translateY(-1px);
}

/* NAVBAR LINKS */
.navbar-menu a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--custom-primary);
  font-weight: 600;
  position: relative;
  transition: 0.3s;
}

.navbar-menu a:hover {
  color: var(--custom-primary-dark);
}

.navbar-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--custom-primary-dark);
  transition: 0.3s;
}

.navbar-menu a:hover::after {
  width: 100%;
}

/* HERO */
.hero-section {
  position: relative;
  padding: 100px 0;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

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

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-section h1 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-section p {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

/* FORM */
.form-box {
  background: #fff;
  color: #000;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* BENEFÍCIOS */
.benefits-section {
  padding: 80px 0;
  background: #fff;
}

.benefits-section h2 {
  color: var(--custom-primary);
  font-size: 36px;
  font-weight: 700;
}

.benefits-section p {
  font-weight: 600;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.benefits-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 12px;
  font-weight: 600;
}

.benefits-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--custom-primary);
}

.benefits-image img {
  width: 100%;
  border-radius: 10px;
}

/* PROCESSO */
.process-section {
  position: relative;
  padding: 100px 0;
}

.process-bg {
  position: absolute;
  inset: 0;
}

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

.process-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.9);
}

.process-content {
  position: relative;
  z-index: 3;
}

.process-section h2 {
  color: var(--custom-primary);
  font-size: 36px;
  font-weight: 700;
}

.process-section p {
  font-weight: 600;
}

.process-item {
  text-align: center;
  margin-bottom: 30px;
}

.process-item img {
  width: 60px;
  margin-bottom: 10px;
}

/* PROJETO */
.project-section {
  padding: 80px 0;
  background: #fff;
}

.project-section h2 {
  color: var(--custom-primary);
  font-size: 36px;
  font-weight: 700;
}

.project-section p {
  font-weight: 600;
}

.project-image img {
  width: 100%;
  border-radius: 10px;
}

/* CONSULTORIA */
.consult-section {
  position: relative;
  padding: 100px 0;
}

.consult-bg {
  position: absolute;
  inset: 0;
}

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

.consult-content {
  position: relative;
  z-index: 3;
}

.consult-section h2 {
  color: var(--custom-primary);
  font-size: 36px;
  font-weight: 700;
}

.consult-section p,
.consult-list li {
  font-weight: 600;
}

.consult-list {
  list-style: none;
  padding: 0;
}

.consult-list li {
  padding-left: 30px;
  position: relative;
}

.consult-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--custom-primary);
}

/* ABOUT */
.about-section {
  padding: 80px 0;
}

.about-section h2 {
  color: var(--custom-primary);
  font-size: 36px;
  font-weight: 700;
}

.about-section p {
  font-weight: 600;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
}

/* CTA */
.cta-section {
  position: relative;
  padding: 100px 0;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

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

.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.cta-content {
  position: relative;
  z-index: 3;
  text-align: center;
}

.cta-section h2,
.cta-section p {
  color: #fff;
}

.cta-section p {
  max-width: 800px;
  margin: 0 auto 20px;
}

/* FOOTER */
.footer {
  background: #f6f6f6;
  padding: 40px 0 20px;
  text-align: center;
}

.footer-logo img {
  max-width: 140px;
}

.footer-social a {
  margin: 0 10px;
  font-size: 22px;
  color: var(--custom-primary);
  border: 1px solid var(--custom-primary);
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}

.footer-social a:hover {
  background: var(--custom-primary);
  color: #fff;
}

.footer-copy {
  font-size: 12px;
  color: #000;
}

@media (max-width: 768px) {


  html, body {
    overflow-x: hidden;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* ================= HERO ================= */
  .hero-section {
    padding: 70px 0;
    text-align: center;
  }

  .hero-section h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .hero-section p {
    font-size: 15px;
  }

  .form-box {
    margin-top: 30px;
  }

  .benefits-section,
  .project-section,
  .about-section,
  .consult-section,
  .cta-section {
    padding: 60px 0;
    text-align: center;
  }

  .benefits-section .row,
  .project-section .row,
  .about-section .row,
  .consult-section .row {
    gap: 30px;
  }

  /* TEXTOS */
  h2 {
    font-size: 26px;
    margin-bottom: 15px;
  }

  p {
    font-size: 15px;
  }

  /* IMAGENS */
  .benefits-image,
  .project-image,
  .consult-image,
  .about-image {
    margin-top: 20px;
  }

  /* ================= LISTAS ================= */
  .benefits-list,
  .consult-list {
    text-align: left;
    margin-top: 20px;
  }

  .process-section {
    padding: 70px 0;
  }

  .process-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 30px;
  }

  .process-item {
    width: 100%;
    text-align: center;
  }

  .process-item img {
    width: 45px;
    margin-bottom: 10px;
  }

  .process-item p {
    font-size: 13px;
  }

  /* ================= CTA ================= */
  .cta-section h2 {
    font-size: 24px;
  }

  .cta-section p {
    font-size: 14px;
  }

  /* ================= FOOTER ================= */
  .footer-logo img {
    max-width: 120px;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

}

/* ================= NAVBAR MOBILE ================= */

.navbar-container {
  position: relative;
}

.navbar-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;

  display: flex;
  flex-direction: column;
  align-items: center;

  max-height: 0;
  overflow: hidden;

  transition: max-height 0.4s ease;
  z-index: 999;
}

.navbar-menu.active {
  max-height: 400px;
  padding: 20px 0;
}

.navbar-menu a {
  margin: 12px 0;
  font-size: 18px;
}

.hamburger {
  display: block;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background: var(--custom-primary);
  margin: 5px;
  transition: 0.3s;
}

.hamburger.active div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active div:nth-child(2) {
  opacity: 0;
}

.hamburger.active div:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ================= NAVBAR DESKTOP ================= */
@media (min-width: 769px) {


  .navbar-menu {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    max-height: none;
    overflow: visible;
    background: transparent;
  }

  .navbar-menu a {
    margin: 0 15px;
    font-size: 16px;
  }

  .hamburger {
    display: none;
  }

}

.float {
  position: fixed;
  width: 70px;
  height: 70px;
  bottom: 40px;
  right: 40px;
  z-index: 100;
  transition: 0.5s;
}

.float:hover {
  transform: scale(1.1);
}

.float img {
  max-width: 110%;
}
