@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --primary: #e78700;
  --secondary: #7ca32c;
  --dark: #1f1f1f;
  --font-family: 'Poppins', sans-serif;
}

body {
  font-family: var(--font-family);
  color: #333;
}

/*  ESPAÇAMENTO ENTRE SECTIONS */
section {
  padding: 100px 0;
}

.navbar {
  background: #fff;
  padding: 20px 0;
}

.navbar-brand img {
  max-height: 60px;
}

.navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
  margin-left: 20px;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover {
  color: var(--primary);
}

.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 600;
}

.hero-content p {
  font-size: 1.1rem;
  margin-top: 20px;
}

.formulario {
  background: #fff;
  padding: 35px;
  border-radius: 10px;
  color: #333; 
}

.formulario h3 {
  margin-bottom: 20px;
  color: var(--primary);
}


.formulario .btn,
.formulario button {
  background: var(--secondary);
  border: none;
  color: #fff;
  font-weight: 500;
}

.formulario .btn:hover,
.formulario button:hover {
  background: var(--primary);
}


#beneficios {
  background: #f9f9f9;
}

.beneficio-img img {
  max-width: 70px;
  margin-bottom: 20px;
}

.beneficio-texto h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.beneficio-texto p {
  font-size: 0.95rem;
}

.solucao-img img {
  max-width: 280px;
  height: auto;
}

.solucao-item {
  padding: 20px;
}

#solucoes .btn {
  background: var(--primary);
  border: none;
  margin-top: 20px;
}

#solucoes .btn:hover {
  background: var(--secondary);
}

.sobre-texto p {
  font-size: 1.15rem;
  line-height: 1.8;
}

.sobre-img img {
  width: 80%;
  border-radius: 8px;
}

#cta-final {
  position: relative;
  padding: 120px 0;
}

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

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

#cta-final .container {
  position: relative;
  z-index: 2;
  color: #fff;
}

#cta-final h2 {
  font-weight: 600;
}

#cta-final .btn {
  background: var(--secondary);
  border: none;
  font-weight: 600;
}

#cta-final .btn:hover {
  background: var(--primary);
}


#footer {
  padding: 60px 0;
  background: #f4f4f4;
}

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

.whatsapp-link {
  text-decoration: none;
  font-size: 18px;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.whatsapp-link i {
  color: var(--secondary);
  font-size: 22px;
}

.whatsapp-link:hover {
  color: var(--primary);
}

section h2 {
  font-weight: 600;
}

/* BENEFÍCIOS - LARANJA */
#beneficios h2 {
  color: var(--primary);
}

/* SOLUÇÕES - VERDE */
#solucoes h2 {
  color: var(--secondary);
}

/* SOBRE - LARANJA */
#sobre h2 {
  color: var(--primary);
}

/* CTA - VERDE */
#cta-final h2 {
  color: #fff; /* mantém branco por causa da imagem */
}

#beneficios {
  background: #fff;
}

#solucoes {
  background: #f4f4f4;
}

#sobre {
  background: #fff;
}

#cta-final {
  background: #f4f4f4; /* fallback caso imagem não carregue */
}

/* ========================================
   RESPONSIVO MOBILE (até 991px)
======================================== */
@media (max-width: 991px) {

  /* Espaçamento geral */
  section {
    padding: 70px 0;
  }

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

  .navbar-toggler {
    border: none;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  /* Ícone hambúrguer custom */
  .navbar-toggler-icon {
    background-image: none;
    width: 28px;
    height: 3px;
    background-color: var(--dark);
    position: relative;
    display: inline-block;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    width: 28px;
    height: 3px;
    background-color: var(--dark);
    left: 0;
  }

  .navbar-toggler-icon::before {
    top: -8px;
  }

  .navbar-toggler-icon::after {
    top: 8px;
  }

  .navbar-collapse {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
  }

  .navbar-nav .nav-link {
    margin: 12px 0;
    font-size: 16px;
  }

  /* ================= HERO ================= */

  .hero-section {
    min-height: auto;
    padding: 80px 0;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .formulario {
    margin-top: 40px;
    padding: 25px;
  }

  /* ================= BENEFÍCIOS ================= */

  #beneficios h2,
  #solucoes h2,
  #sobre h2 {
    font-size: 1.6rem;
  }

  .beneficio-item {
    margin-bottom: 30px;
  }

  /* ================= SOLUÇÕES ================= */

  .solucao-img img {
    max-width: 220px;
  }

  .solucao-item {
    padding: 10px;
  }

  /* ================= SOBRE ================= */

  .sobre-img {
    text-align: center;
  }

  .sobre-img img {
    width: 95%;
    margin-bottom: 30px;
  }

  .sobre-texto {
    text-align: center;
  }

  .sobre-texto p {
    font-size: 1rem;
  }

  /* ================= CTA ================= */

  #cta-final {
    padding: 90px 0;
  }

  #cta-final h2 {
    font-size: 1.6rem;
  }

  #cta-final p {
    font-size: 1rem;
  }

  /* ================= FOOTER ================= */

  #footer {
    padding: 40px 0;
  }

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

}

.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%;
}