@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
  --custom-primary: #02c0c7;
  --font-family: 'Poppins', var(--bs-font-sans-serif);
}

.btn-custom-primary {
  background-color: var(--custom-primary);
  border-color: var(--custom-primary);
  color: #fff;
}

.btn-custom-primary:hover,
.btn-custom-primary:focus,
.btn-custom-primary:active {
  background-color: var(--custom-primary) !important;
  border-color: var(--custom-primary) !important;
  color: #fff !important;
  filter: brightness(0.9) !important;
}

body {
  font-family: var(--font-family);
}

/* NAVBAR */
#header {
  background: #ffffff;
  border-bottom: 1px solid #eaeaea;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

/* LOGO */
.logo img {
  max-height: 48px; /* ajuste fino: 40px a 52px */
  width: auto;
  display: block;
}

.menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.menu a {
  font-size: 15px;
  font-weight: 500;
  color: #2b2b2b;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #02c0c7;
}

/* underline animado */
.menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #02c0c7;
  transition: width 0.3s ease;
}

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

.hero-section {
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-section > .container {
  position: relative;
  z-index: 2;
}

#produtos {
  padding: 80px 0;
}

#produtos h2 {
  font-size: 32px;
}

.produtos-intro {
  max-width: 720px;
  margin: 0 auto;
  color: #555;
}

.produto-item {
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  height: 100%;
}

.produto-item h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.produto-img {
  margin-bottom: 20px;
}

.produto-img img {
  max-width: 100%;
  height: auto;
}

.produto-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

#missao {
  background: #002226;
  padding: 90px 0;
}

#missao h2 {
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 24px;
}

#missao p {
  font-size: 16px;
  line-height: 1.7;
  color: #ffffff;
}

.missao-pilares {
  margin-top: 32px;
}

.pilar {
  margin-bottom: 24px;
}

.pilar h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 8px;
}

.pilar p {
  color: #ffffff;
  margin: 0;
}

.missao-img img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

#diferenciais {
  padding: 90px 0;
  background: #ffffff;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.diferencial-item {
  text-align: center;
}

.diferencial-item img {
  width: 90px;        /* pode subir para 100px se quiser */
  height: auto;
  margin-bottom: 16px;
}

.diferencial-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #444;
}

@media (max-width: 992px) {
  .diferenciais-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .diferenciais-grid {
    grid-template-columns: 1fr;
  }
}

#quem-somos {
  padding: 100px 0;
  background: #f5f6f7;
}

.quem-somos-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.quem-somos-img img {
  width: 80%;
  height: auto;
  border-radius: 8px;
}

.quem-somos-text h2 {
  margin-bottom: 24px;
}

.quem-somos-text p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .quem-somos-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .quem-somos-text {
    text-align: left;
  }
}

.cta-final {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

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

.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

/* NOVO */
.cta-final .container {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.cta-content {
  max-width: 700px;
  color: #fff;
  text-align: center;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

.cta-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
  color: #f1f1f1;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: #02c0c7;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #02c0c7;
}

@media (max-width: 768px) {
  .cta-final {
    min-height: 60vh;
  }

  .cta-content h2 {
    font-size: 28px;
  }
}

.footer {
  background: #ffffff;
  border-top: 1px solid #e5e5e5;
}

.footer-text {
  font-size: 14px;
  margin-bottom: 8px;
  color: #555;
}

.footer-link {
  color: #555;
  text-decoration: none;
  font-weight: 500;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-copy {
  font-size: 13px;
  color: #888;
  margin: 0;
}

.footer-link i {
  font-size: 22px;
  color: #555;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.footer-link:hover i {
  color: #0d6efd;
}

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

/* botão hamburguer (escondido no desktop) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #2b2b2b;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* estado ativo (X) */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* MOBILE */
@media (max-width: 992px) {

  .menu-toggle {
    display: flex;
  }

  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
    border-bottom: 1px solid #eaeaea;
  }

  .menu a {
    width: 100%;
    text-align: center;
    padding: 16px 0;
    border-top: 1px solid #f0f0f0;
  }

  .menu.open {
    max-height: 300px; /* suficiente para os links */
  }
}

.navbar {
  position: relative;
}

html, body {
  overflow-x: hidden;
}

#header {
  position: relative;
  z-index: 9999;
}

.hero-section::before {
  z-index: 1;
}

.hero-section > .container {
  position: relative;
  z-index: 2;
}

.float-whatsapp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
}

.float-whatsapp img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.float-whatsapp:hover img {
  transform: scale(1.08);
}

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

.cta-final {
  padding: 30px 0; 
}

.cta-final h2,
.cta-final p {
  color: #ffffff;
}
