/* Reset básico */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f0f6f4;
  color: #004d33;
  line-height: 1.6;
}

/* === Navbar fixa === */
.navbar {
  position: fixed;
  width: 100%;
  background-color: #007a50;
  color: white;
  top: 0;
  left: 0;
  z-index: 9999;
  box-shadow: 0 2px 10px rgb(0 0 0 / 0.15);
}

.navbar .container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

.navbar .logo {
  font-size: 1.8rem;
  font-weight: 700;
}

.navbar nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.navbar nav a:hover {
  color: #a1d8b1;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  user-select: none;
  color: white;
}

/* === Home === */
#home {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  margin-top: 65px; /* para navbar fixa */
  color: white;
  overflow: hidden;
}

#home .banner {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('hero.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}

#home .text-slider {
  position: relative;
  font-size: 2.5rem;
  font-weight: 700;
  max-width: 600px;
  z-index: 1;
}

.btn-primary {
  background-color: #00a15d;
  border: none;
  padding: 14px 36px;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  border-radius: 30px;
  margin-top: 25px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #007a50;
}

/* === Sections Gerais === */
.section-container {
  padding: 80px 20px;
  max-width: 1100px;
  margin: 40px auto;
  text-align: center;
  background-color: #e6f2ed;
  border-radius: 10px;
}

.section-container h2 {
  font-size: 2rem;
  color: #007a50;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

/* Quem Somos */
#quem-somos .quem-somos-content {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

#quem-somos img {
  width: 320px;
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

#quem-somos p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #004d33;
}

/* Nossos Serviços */
.servicos-list {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.servico-item {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 25px;
  width: 280px;
  text-align: center;
  transition: transform 0.3s ease;
}

.servico-item:hover {
  transform: translateY(-8px);
}

.servico-item i {
  font-size: 36px;
  color: #00a15d;
  margin-bottom: 12px;
}

.servico-item h3 {
  margin-bottom: 15px;
  color: #007a50;
  font-size: 1.3rem;
}

/* Central de Atendimento */
.service-item {
  background-color: white;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.service-item:hover {
  transform: translateY(-10px);
}

.service-item h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #007a50;
  margin-bottom: 12px;
}

.service-item p {
  margin-bottom: 20px;
}

/* Godown (seta para baixo) */
.godown {
  cursor: pointer;
  margin-bottom: 40px;
  text-align: center;
}

.godown span span {
  font-size: 32px;
  color: #00a15d;
  display: inline-block;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* FAQ */
#faq {
  background-color: #f4f9f6;
  padding: 60px 20px;
  max-width: 1100px;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

#faq h2 {
  color: #007a50;
  font-size: 2rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.faq-intro {
  font-size: 1.1rem;
  color: #004d33;
  margin-bottom: 40px;
  text-align: center;
}

.faq-item {
  background: white;
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 18px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease;
  text-align: left;
}

.faq-item:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.faq-item h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: #005837;
  font-size: 1.2rem;
  font-weight: 700;
}

.faq-item p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}

/* Footer */
.footer {
  background-color: #004d33;
  color: white;
  padding: 50px 20px 20px;
  margin-top: 60px;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.footer-logo h2 {
  font-size: 1.8rem;
  font-weight: 700;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.footer-nav a {
  color: white;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #a1d8b1;
}

.footer-contact p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-social a {
  font-size: 1.8rem;
  margin-right: 12px;
  color: white;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #a1d8b1;
}

.footer-copy {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #9bd4b8;
}

.footer-copy a {
  color: #9bd4b8;
  text-decoration: none;
}

.footer-copy a:hover {
  text-decoration: underline;
}

/* Botão flutuante WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: white;
  font-size: 2.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.6);
  transition: background-color 0.3s ease;
  z-index: 9999;
}

.whatsapp-float:hover {
  background-color: #128c4a;
}

/* Responsividade */
@media (max-width: 900px) {
  .quem-somos-content {
    flex-direction: column;
  }

  .servicos-list {
    flex-direction: column;
    align-items: center;
  }

  .servico-item {
    width: 90%;
  }
}

@media (max-width: 600px) {
  #home .text-slider {
    font-size: 1.8rem;
  }

  .navbar nav a {
    margin-left: 10px;
    font-size: 0.9rem;
  }

  .footer-container {
    flex-direction: column;
    gap: 20px;
  }

  .faq-item {
    padding: 15px 18px;
  }
}

/* Animação reveal - fade e subida */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.footer-copy {
  text-align: center;
  margin-top: 30px;
  font-size: 0.95rem;
  color: #9bd4b8;
  line-height: 1.6;
}


