* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}


:root {
  /* Cores principais */
  --verde-principal: #4F6F52;   /* saúde, equilíbrio */
  --verde-claro: #8BC34A;       /* natural, leveza */

  /* Cores neutras */
  --branco: #FFFFFF;
  --off-white: #F7F7F7;
  --cinza-texto: #333333;
  --cinza-claro: #E0E0E0;

  /* Cores de apoio */
  --bege-natural: #E6D5B8;      /* dieta, acolhimento */
  --rose-suave: #D4A5A5;        /* feminino, estética */
  --laranja-suave: #F4A261;     /* energia */
}


body {
  background: #f5f5f5;
  color: #333;
}

.header {
  width: 100%;
  display: flex;
  height: 190px;

  justify-content:center;
  align-items: center; 
  background-color: var(--verde-principal); 

}

.rede{
  display: flex;
  list-style: none;
  
}

.rede li a img{
  width: 60px;

}




/* Logo */
.logo img {
  display: flex;
  position: relative;
  top: 30px;
   height: 700px;   /* ajuste conforme sua logo */
   z-index: 999999;
}

/* Menu */
.menu {
  display: flex;
  gap: 20px;
  font-size: 1.25em;
}

.menu a {
  text-decoration: none;
  color:#f7af43;
  font-weight: 600;
}

.menu a:hover{
  color:#ECF0F1;
}

.menu ul{
  display: flex;
  text-decoration: none;
  list-style: none;
  gap: 30px;
 
}

.menu  li a{
display: flex;
justify-content: space-evenly;

}



/* ################################ BANNER ###################################*/
.banner {
  margin: 0px  0px 60px 0px;
  width: 100%;
  overflow: hidden;

}

.carousel {
  position: relative;
  width: 100%;
  height: 400px; /* ajuste conforme seu layout */
}

.carousel img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel img.active {
  opacity: 1;
}



.sobre {
  display: flex;
  padding-top:50px ;
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

.sobre-img img {
  /* width: 100%; */
  width: 350px;
  height: 310px;
  transition: all 0.3s ease;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
 
}
.sobre-img img:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.texto-sobre {
 /* padding-left:250px ; */
 padding-bottom:20px ;
  text-align: center;
  font-size:2em;
  color:#f7af43;
}

.sobre-texto p {
  font-size: 1.25em;
  margin-bottom: 15px;
  line-height: 1.6;
}

.btn{
  color:#8eb890;
   font-size: 1.25em;
}
.btn:hover{
  color:#f7af43;
 
}


/* Conteúdo */
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 30px;
}


.card {
  width: 360px;
  height: 470px;
   background: #fff;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}


/* Efeito ao passar o mouse */
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.card img {
  width: 100%;
  border-radius: 10px;
  margin: 15px 0;
}


.card a {

  display:flex;
  justify-content: center;
  font-size:1.25em ;
  text-decoration: none;
  color: #2ecc71;
  font-weight: bold;
}

.card a:hover {
  text-decoration: underline;
  color:#f7af43;
}

/* aqui começa minha sessão serviços  */
.servicos {
  width:100% ;
  padding: 150px;

justify-content: center;
gap:20px;
cursor: pointer;
}

.servicos {
  width: 100%;
  padding: 60px 20px;
}

.titulo-servicos {
  width: 100%;
  text-align: center;   /* CENTRALIZA */
  font-size: 32px;
  color: #2e7d32;
  margin-bottom: 40px;
}

/* cards */
.cards-servicos {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card-servico {
  max-width: 280px;
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
}


.card-servico {
  width: 350px;
  background: #ffffff;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.card-servico h3 {
  color: #1E8449;
  margin-bottom: 15px;
}

.card-servico p {
  line-height: 1.5;
  color: #555;
}

.card-servico:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}
/* fim da  minha sessão serviços  */



/* Footer */
.footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 15px;
  margin-top: 20px;
}

/* 📱 Responsivo */
@media (max-width: 992px) {
  .header {
    flex-direction: column;
    height: auto;
    padding: 20px;
    gap: 15px;
  }

  .header img {
    height: 350px;
  }

  .menu {

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


  .rede {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .carousel {
    height: 250px;
  }
}

/* SESSAO SOBRE  */
@media (max-width: 768px) {
  .sobre {
    flex-direction: column;
    text-align: center;
    padding: 30px 15px;
  }

  .sobre-img img {
    width: 250px;
    height: 250px;
  }

  .sobre-texto p {
    font-size: 1.1em;
  }
}

/* SESSAO SERVIÇO  */

@media (max-width: 992px) {
  .servicos {
    flex-wrap: wrap;
    padding: 30px;
  }

  .card-servico {
    width: 100%;
    max-width: 350px;
  }
}


/* SESSAO CARDS PRINCIPAIS  */
@media (max-width: 768px) {
  .card {
    width: 100%;
    max-width: 350px;
    height: auto;
  }
}
