* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f4f6f5;
  color: #333;
  line-height: 1.6;
}

/* ===============================
   PADRÃO DE FUNDO DAS SEÇÕES
================================ */
.servicos {
  background: #f4f6f5;
}

.processo {
  background: #ffffff;
}

.galeria {
  background: #f4f6f5;
}

.videos {
  background: #ffffff;
}

.sobre {
  background: #f4f6f5;
}


/* HERO */
.hero {
  background: linear-gradient(135deg, #1B945F, #0f6b43);
  color: white;
  text-align: center;
  padding: 10px 20px 60px;
}

/* LOGO RESPONSIVO */
.logo-img {
  /* position: relative; referência para o absolute */
  width: 140px;
  max-width: 40vw;
  height: auto;
  border-radius: 50%;
  border: 4px solid white;
  margin-top: 20px;

  /* distância da esquerda */
  top: 50%;             /* meio vertical */
  transform: translateY(140%);
  

  width: 160px;         /* ajuste fino */
  border-radius: 50%;
  border: 4px solid #fff;
  background: #1f8f5f;  /* verde por trás do logo */
  padding: 10px;
}

.banner {
  width: 100%;
  height: auto;
  padding: 10px;

}

/* TEXTO HERO */
.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.1rem;
}

/* BOTÃO WHATSAPP */
.btn-whatsapp {
  display: inline-block;
  margin-top: 30px;
  background: #25D366;
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.btn-whatsapp:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

.btn-scroll {
  font-size: 25px;
  border: 3px solid yellowgreen;
  border-radius: 25px;
  background-color: yellow;
  padding: 10px 20px;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  margin-bottom:20px;
}


/* SEÇÕES */
section {
  padding: 70px 20px;
  max-width: 1100px;
  margin: auto;
}

h2 {
  text-align: center;
  color: #1B945F;
  margin-bottom: 40px;
  font-size: 2rem;
}

/* SERVIÇOS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
}

.card {
  background: #95d6b6ff;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

/* ÍCONES DOS SERVIÇOS */

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card i {
  font-size: 38px;
  color: #1B945F;
  margin-bottom: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover do card */
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Animação do ícone */
.card:hover i {
  transform: scale(1.2) rotate(5deg);
  color: #0f6b43;
}

.card strong {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.card p {
  font-size: 0.95rem;
}


/* PROCESSO */
.processo {
  background: #f4f6f5;
}

.processo-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.step {
  background: white;
  padding: 30px 20px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.step:hover {
  transform: translateY(-8px);
}

.step i {
  font-size: 36px;
  color: #1B945F;
  margin-bottom: 15px;
}

.step h3 {
  margin-bottom: 10px;
  color: #0f6b43;
}

/* GALERIA - RESULTADOS REAIS */

/* GALERIA */
.imagens {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.imagens img {
  width: 300px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.imagens img:hover {
  transform: scale(1.03);
}


/* SOBRE */
.sobre {
  background: #ffffff;
}

.sobre-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.sobre-texto p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.sobre-lista {
  list-style: none;
  padding: 0;
}

.sobre-lista li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.sobre-lista i {
  color: #1B945F;
  margin-right: 8px;
}

.sobre-destaques {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.destaque {
  background: #f4f6f5;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
}

.destaque i {
  font-size: 28px;
  color: #1B945F;
  margin-bottom: 8px;
}

.destaque strong {
  display: block;
  margin-bottom: 5px;
}

/* CTA */

.cta {
  background: linear-gradient(135deg, #2ecc71, #1B945F);
  box-shadow: 0 -10px 30px rgba(46, 204, 113, 0.25);
  padding: 80px 20px;
}

.cta-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
  color: white;
}

.cta h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

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


/* RESPONSIVO */
@media (max-width: 480px) {
  .cta h2 {
    font-size: 1.6rem;
  }
}


/* RESPONSIVO */
@media (max-width: 768px) {
  .sobre-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sobre-destaques {
    grid-template-columns: 1fr;
  }
}


/* VÍDEOS */

.videos {
  padding: 40px 20px;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  justify-items: center;
}

.videos video {
  width: 100%;
  max-width: 260px; /* DIMINUI aqui */
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  background: #000;
}



/* FOOTER */
footer {
  background: #222;
  color: #eee;
  text-align: center;
  padding: 25px 15px;
  font-size: 0.9rem;
}

/* ANIMAÇÃO */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* WHATSAPP FLUTUANTE */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25D366;
  color: white;
  font-size: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  cursor: pointer;
}

li {
  margin-left: 1%;
}

.whatsapp-link {
  display: inline-block;
  margin-top: 5px;
  background: #25D366;
  color: white;
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  
}

.whatsapp-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);: 0.8;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .logo-img {
    width: 110px;
  }

  .hero h1 {
    font-size: 1.9rem;
  }
}

@media (max-width: 480px) {
  .logo-img {
    width: 95px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero {
  padding-top: 40px;
}

 
  h2 {
  text-align: center;
  color: #1B945F;
  margin-bottom: 01px;
  font-size: 1.2rem;
}

.processo ol {
  max-width: 600px;
  margin: auto;
  margin-left: 5%;
  margin-top: 5%;
}


}

@media (max-width: 480px) {
  .videos video {
    max-width: 220px;
  }
}
