* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  background: white;
}

section {

  min-height: 100vh;
  scroll-margin-top: 100px;
  box-sizing: border-box;
  overflow: hidden;
}



.menu-mobile {
  display: none;
}

.menu-toggle {
  display: none;
}

/* Esconde o menu por padrão em telas pequenas */
.menu {
  display: flex;
  gap: 1.5rem;
}

.nav-bar {
  width: 100%;
  background-color: transparent !important;
  transition: background-color 0.9s ease;
  color: #ffffff;
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;

}

.nav-bar.scrolled {
  background-color: #000000 !important;
  transition: 0.9s ease;
}

.nav-bar .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.nav-bar .logo img {
  width: 7rem;
  height: auto;
}

.nav-bar ul {
  list-style: none;
  display: flex;
  gap: 4rem;
}

.nav-bar a {
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: color 0.2s;
}

/* ===========================
   HEADER (HERO SECTION)
   =========================== */

.pata {
  position: absolute;
  width: 40px;
  height: 40px;
  pointer-events: none;
  opacity: 0.8;
  animation-timing-function: ease-in-out;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.6));
}

@keyframes flutuar {

  0%,
  100% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0.8;
  }

  50% {
    transform: translateY(-15px) translateX(10px) rotate(15deg);
    opacity: 0.4;
  }
}

.header {
  width: 100%;
  height: 100vh;
  background-image: url('./img/creche.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding-top: 60px;

}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.header-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 20px;
  padding: 20px;
}

.header-content p {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.header-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
}

/* ===========================
   BOTOES DENTRO DO HEADER
   =========================== */
.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;


}


.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  border-radius: 50px;
  background: #fff;
  color: #000;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  overflow: hidden;
  transition: color 0.3s ease;

}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #5CE1E6);
  transition: width 1.1s ease;
  z-index: 0;
}

.btn:hover::before {
  width: 100%;
}

.btn i,
.btn span {
  position: relative;
  z-index: 1;
}

.btn:hover {
  color: #000000;
}

.sectionquemsomos {
  display: flex;
  justify-content: space-between;

}

.sectionquemsomos img {
  width: 730px;
}

.quemsomos {
  padding: 3rem; 
 
}


.titulo {
  padding-top: 3rem;
  display: flex;
  justify-content: start;
  color: #000000;
  font-size: 2.5rem;

}

.quemsomos p {
  display: flex;
  color: #000000;
  padding-top: 2rem;
  text-align: left;
  font-size: 20px;

}

.depoimentos-section {
  padding: 60px 20px;
  text-align: center; 
}

.depoimentos-section h3 {
  padding-top: 2rem;
  color: #000;
  font-size: 2.5rem;
  justify-content: center;
  display: flex;
 
}

.depoimentos-section h2 {
  font-size: 18px;
  color: #000;
  margin-bottom: 2rem;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  font-style: italic;
}

.swiper {
  width: 100%;
  padding: 20px 0;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.depo-img {
  width: 100%;
  height: 300px;
  /* Altura fixa para padronizar */
  max-width: 100%;
  object-fit: cover;
  /* Garante que a imagem preencha sem deformar */
  border-radius: 40px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.depo-img:hover {
  transform: scale(1.03);
}

.swiper-button-prev,
.swiper-button-next {
  color: #000;
}

.swiper-pagination-bullet {
  background: #000;
}

.diferenciais {
  
  background: #fff;
  font-family: 'Arial', sans-serif;
  max-width: 100%;
  
  
}

.diferenciais h2 {
  color: #000000;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;  
  display: inline-block;
  text-transform: uppercase;
  margin-left: 3rem;
  justify-content: start;
}

/* Wrapper em duas colunas */
.diferenciais-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

/* Coluna da imagem */
.diferenciais-img {
  flex: 1 1 45%;
  min-width: 300px;
}

.diferenciais-img img {
  width: 100%;
  height: auto;  
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 5rem;
}

/* Coluna do acordeão */
.accordion {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 3rem;
}

.accordion-item {
  background: #f6f6f6;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.accordion-item.active {
  background: #000;
  color: #fff;
}

.accordion-header {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 20px 30px;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: inherit;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fff;
  color: #444;
  padding: 0 30px;
}

.accordion-item.active .accordion-body {
  max-height: 300px;
  padding: 20px 30px;
}

.accordion .icon {
  font-size: 1.4rem;
  font-weight: bold;
}
.servicos {
  width: 100%;
 
}

.servicos h2 {
  color: #000;
 font-size: 2.5rem;
 font-weight: bold;
  justify-content: center;
  display: flex;
  align-items: center;
  margin-top: 6rem;
  text-transform: uppercase;
}


.servicos p {
  color: #000;
  justify-content: center;
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
  font-style: italic;
  text-align: center;
  font-weight: bold;

}


.servicos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.servico {
  background-color: #000000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(25% - 1rem);
  max-width: calc(25% - 1rem);
  margin: 0;
  box-sizing: border-box;
  overflow: hidden;
  text-align: center;

}


.imagem-wrapper {
  position: relative;
  overflow: hidden;
}

.imagem-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.imagem-wrapper h3 {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  z-index: 2;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 35px;
  margin: 0;
  text-align: center;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.imagem-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3), transparent);
  z-index: 1;
}

.servico .conteudo {
  padding: 20px;
}

.servico .conteudo p {
  font-size: 17px;
  color: #ffffff;
  margin-bottom: 25px;
  text-align: center;
  font-style: italic;
  font-weight: bold;
}

.conteudo a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  border-radius: 50px;
  background: #fff;
  color: #000;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  overflow: hidden;
  transition: color 0.3s ease;
}

.conteudo a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #5CE1E6);
  transition: width 1.1s ease;
  z-index: 0;
}

/* Ao passar o mouse, o gradiente preenche o fundo */
.conteudo a:hover::before {
  width: 100%;
}

.conteudo a:hover {
  color: #000000;
}

.conteudo span,
.conteudo i {
  position: relative;
  z-index: 1;
}

.container-maps img {
  width: 350px;
  height: auto;
  border-radius: 2rem;
}

.section-maps {
  padding: 60px 20px;
  align-items: center;
  gap: 3rem;

}

.container-button {
  text-align: center;
}

.container-button a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  border-radius: 50px;
  background: #000000;
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  overflow: hidden;
  transition: color 0.3s ease;

}

.container-button address {
  margin-bottom: 2rem;
}

/* Fundo gradiente que vai crescer */
.container-button a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #5CE1E6);
  transition: width 1.1s ease;
  z-index: 0;
}

/* Ao passar o mouse, o gradiente preenche o fundo */
.container-button a:hover::before {
  width: 100%;
}

/* Ícone e texto ficam acima do gradiente */
.container-button a span {
  position: relative;
  z-index: 1;
}

/* Muda a cor do texto no hover para ficar visível sobre o fundo */
.container-button a:hover {
  color: #000000;
}




.footer-bpc {
  background-image: url(./img/footer.png); /* verde veterinário */
  color: #000000;
  padding: 40px 20px 0;
  font-family: 'Arial', sans-serif;
  
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.logo-footer {
  max-width: 180px;
  margin-bottom: 20px;
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.footer-infos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.info-block {
  flex: 1 1 200px;
  min-width: 200px;
  text-align: left;
}

.info-block h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.info-block p,
.info-block a {
  margin: 6px 0;
  color: #000000;
  font-size: 0.95rem;
  text-decoration: none;
}

.info-block i {
  margin-right: 8px;
}

.map-block {
  margin: 30px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.footer-bottom {
  background: #ffffff;
  padding: 20px;
  color: #ccc;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: #000000;
  font-weight: bold;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}
.final {
padding: 3rem;
}


/* RESPONSIVIDADE GERAL */

@media screen and (max-width:728px) {
  .header-content {
    padding-top: 20rem;
  }

  .header h1 {
    font-size: 2rem;
  }

  .menu {
    display: none;
  }

  .nav-bar .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
    font-size: 35px;
    position: fixed;
    top: 20px;
    right: 25px;
    color: white;
    cursor: pointer;
    z-index: 1001;

  }

  .menu-mobile {
    display: block;
    position: fixed;
    top: 0;
    right: -250px;
    height: 100vh;
    width: 200px;
    background-color: #fff;
    border-left: 1px solid var(--vidro);
    transition: right 0.4s ease;
    z-index: 1000;
    padding-top: 70px;
    backdrop-filter: blur(10px);
  }

  .nav-bar ul {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding: 10px 0;
  }

  .buttons {
    display: grid;

  }

  .quemsomos p {
    font-size: 16px;
    /* tamanho menor para celular ou tablet */
  }

  .sectionquemsomos {
    flex-direction: column;
    align-items: center;
  }

  .sectionquemsomos img {
    width: 100%;
    max-width: 100%;
  }

  .diferenciais {
    flex-direction: column;
  }

  .imagem-cachorros {
    width: 100%;
    height: 110%;
  }

  .imagem-cachorros img {
    width: 100%;
    height: auto;

  }

  .diferenciais-text {
    width: 100%;
  }

  .servicos-container {
    flex-direction: column;
    align-items: center;

  }

  .servico {
    flex: 1 1 100%;
    max-width: 100%;

  }


  .section-maps {
    flex-direction: column;
    text-align: center;
  }

  .container-maps img {
    width: 90%;
    max-width: 100%;
  }



}

.menu-mobile.show {
  right: 0;
}

.menu-mobile ul {
  list-style: none;
  padding: 0;
}

.menu-mobile li a {
  display: block;
  padding: 1rem;
  text-decoration: none;
  color: var(--claro);
  font-weight: bold;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
}

.menu-mobile li a:hover {
  background: #00ffcc;
}