@charset "UTF-8";

:root {
  --fundo: white;
  --shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  --border-radius: 10px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

body {
  color: black;
  background: white;
  font-family: "Montserrat", sans-serif;
  /* font-family: 'Poppins', sans-serif; */
  height: 100dvh;
}

/* ===========animações======= */
@keyframes mover {
  0% {
    opacity: 0;
    transform: translateX(-600px);
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.animated {
  animation: mover 0.8s ease-out forwards;
  opacity: 0;
}

.scroll-reveal {
  opacity: 0;
}

@keyframes logoFadeZoom {
  0% {
    opacity: 0;
    transform: scale(0.4);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.logo-animada {
  animation: logoFadeZoom 1s ease-out forwards;
  opacity: 0;
}

.mover {
  animation: mover 2.7s infinite;
}

/* ==============logo do site=========== */
#cor_fundo {
  /* background-image: linear-gradient(to top, darkgreen, rgba(0, 0, 0, 0.925)); */
  background: linear-gradient(to right, #1f1f1f, #383838);
  padding: 10px;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container_logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column nowrap;
}

.container_logo img {
  margin: 20px;
  width: 60%;
}

#home h1 {
  font-size: 0.9rem;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
  color: #09a25a;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

#home p {
  font-size: 0.7rem;
  margin-bottom: 20px;
  color: #09a25a;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.btn_whatsapp {
  padding: 12px 32px;
  font-size: 1rem;
  color: white;
  border-radius: 5px;
  background-color: #00c851;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn_whatsapp:hover {
  background-color: #007e33;
}

.whatsapp {
  margin-top: 20px;
  font-size: 1.1rem;
}
/* ========conteúdo principal========= */
#principal {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column nowrap;
  width: 100%;
  padding: 5px;
  background-color: #fdfdfd;
}

#principal h2 {
  margin: 50px 0px !important;
  font-size: clamp(1.1rem, 4vw, 2rem);
  color: #014601 !important;
}

.float_zap {
  position: fixed;
  background-color: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 9999;
  right: 30px;
  bottom: 20px;
  cursor: pointer;
}

.float_zap a {
  color: white;
}

.float_zap:hover {
  background-color: #128c7e;
}
/* ==================serviços======= */
#servicos {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  margin: 0 auto;
}

#servicos h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.container-servicos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.card-servico {
  background-color: white;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-servico:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.icone-servico {
  font-size: clamp(1rem, 2.5vw, 2.5rem);
  color: #00aa44;
  margin-bottom: 15px;
}

.card-servico h3 {
  font-size: clamp(1rem, 1.5vw, 2rem);
  margin-bottom: 10px;
  color: #003f1f;
}

.card-servico p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

.animar {
  opacity: 0;
  transform: translateY(50px);
  animation: subir 0.6s ease-out forwards;
}

@media (min-width: 600px) {
  .container-servicos {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .container-servicos {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ================sobre nós e agenda======== */
#agenda_sobre-nos {
  padding: 10px;
}

#agenda_sobre-nos h2 {
  text-align: center;
}

.container-infor {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  width: 100%;
  max-width: 1200px;
  text-align: center;
  padding: 10px;
}

.mover-bloco {
  transition: transform 0.3s ease;
}

.mover-bloco:hover {
  transform: translateY(-4px);
}

.agenda,
.sobre-nos {
  width: 100%;
  box-shadow: var(--shadow);
  padding: 30px 25px;
  color: black;
  border-radius: var(--border-radius);
  background-color: var(--fundo);
  /* word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
  overflow-wrap: break-word; */
}

.sobre-nos p {
  line-height: 1.6;
}

.agenda h3,
.sobre-nos h3 {
  font-size: clamp(1rem, 4vw, 1.6rem);
  margin-bottom: 15px;
  gap: 10px;
  color: #006633;
}

.horarios {
  list-style: none;
  margin: 20px 0px;
  font-size: clamp(0.9rem, 4vw, 1.1rem);
  color: #003f1f;
  text-align: center;
}

.agendamento {
  font-weight: bold;
  color: #006633;
  text-align: center;
  font-size: clamp(0.9rem, 3vw, 1rem);
}
/* ================carrossel============ */
#carros-finalizados {
  text-align: center;
}

.carousel {
  position: relative;
  margin: 2rem auto;
  max-width: 900px;
  overflow: hidden;
}

.carousel-track-container {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  list-style: none;
  padding: 0;
  margin: 0;
}

.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 0 10px;
}

.carousel-slide img {
  width: 100%;
  border-radius: 8px;
  display: block;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0 15px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  user-select: none;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.carousel-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.focarImg {
  background: rgba(0, 0, 0, 0.8);
  height: 100dvh;
  width: 100dvw;
  position: fixed;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
}

.focarImg.ativo {
  opacity: 1;
  visibility: visible;
}

.focarImg #model_img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 70%;
  object-fit: contain;
}

.sair-model {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 20px;
  right: 30px;
  background-color: black;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
/* ============avalições========= */
#avaliacoes {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.container-avaliacoes {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 0px 0px 15px 0px;
}

.avaliacao {
  width: 95%;
  box-shadow: var(--shadow);
  padding: 10px;
  height: auto;
  border-radius: var(--border-radius);
  background-color: var(--fundo);
}

.pessoa {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.pessoa::before {
  content: "";
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-image: url(imagens/sem\ perfil.jpg);
  background-size: cover;
  margin: 4px;
}

.estrelas i {
  font-size: clamp(0.6rem, 4vw, 1rem);
  color: gold;
}

.pessoa_avaliacao {
  padding: 10px 0px;
  font-size: clamp(0.6rem, 2.7vw, 1rem);
}

.pessoa h3 {
  font-size: clamp(0.7rem, 1.5vw, 1.5rem);
}

.btn_ver_mais {
  color: white;
  border: none;
  border-radius: 10px;
  width: auto;
  padding: 7px;
  background-color: #007bff;
  cursor: pointer;
}
/* ============final========= */
footer {
  background-color: rgba(0, 0, 0, 0.897);
  padding-top: 30px;
}

footer abbr {
  border: none;
  text-decoration: none;
}

#final {
  display: flex;
  flex-flow: column nowrap;
  gap: 20px;
  color: white;
}

.container_itens {
  padding: 0px 10px;
}

#final a {
  font-size: clamp(0.7rem, 8.5vw, 1rem);
  padding: 5px 0px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.897);
}

#final p {
  font-size: clamp(0.7rem, 8.5vw, 1rem);
  padding: 5px 0px;
}

#final h2 {
  padding: 5px 0px;
  margin-top: 15px;
}

#final li {
  padding: 3px;
  list-style: none;
}

.pagamentos .itens i {
  font-size: 1.6rem;
}

.contatos .itens {
  display: flex;
  flex-flow: column nowrap;
}
.contatos {
  margin-bottom: 15px;
}
#cor_fundo {
  padding: 100px 20px;
}

.container_logo h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #b30059;
}

.container_logo h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #8b0057;
}

.icons {
  display: flex;
  flex-flow: row wrap;
  gap: 5px;
}

.localizacao,
iframe {
  width: 100%;
  height: 300px;
  padding: 2px;
}

.final {
  background-image: linear-gradient(
    to right,
    rgb(1, 70, 1),
    rgba(84, 255, 84, 0.801)
  );
  font-size: clamp(1.2rem, 1.2vw, 2rem);
  padding: 7px;
  text-align: center;
  width: 100%;
  color: black;
}

/* =============media============ */
@media (min-width: 300px) {
  #final {
    display: flex;
  }
  #agenda_sobre-nos {
    padding: 0px;
  }

  #servicos {
    padding: 0px 10px;
  }
}
/* =========home========= */
@media (max-width: 150px) {
  .btn_whatsapp {
    font-size: 11px;
    padding: 8px;
  }
  #home {
    height: 80vh;
  }
  #home h1 {
    font-size: 6.8px;
  }

  #home p {
    font-size: 6px;
  }
}

@media (max-width: 300px) {
  #home h1 {
    font-size: clamp(0.4rem, 4vw, 10rem);
  }
  #home p {
    font-size: clamp(0.4rem, 3vw, 10rem);
  }
  #principal h2 {
    font-size: 0.8rem;
  }

  .btn_whatsapp {
    font-size: 10px;
    padding: 10px;
  }
  .agenda,
  .sobre-nos {
    padding: 20px 5px;
  }
}

@media (min-width: 455px) {
  #home h1 {
    font-size: 22px;
  }

  #home p {
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  #cor_fundo {
    height: 100vh;
  }
  /* =============home============== */
  #home h1 {
    font-size: clamp(1rem, 4vw, 3rem);
  }

  #home p {
    font-size: clamp(1rem, 2.2vw, 2rem);
  }
  /* ========carrossel======= */
  .carousel-slide {
    min-width: 50%;
  }
  /* =======agenda===== */
  .container-infor {
    grid-template-columns: 1fr 1fr;
  }
  /* =========avaliações======== */
  #avaliacao {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .avaliacao {
    width: 31.33%;
    height: 234px;
  }

  /* =============final========== */
  #final h2 {
    font-size: 1rem;
  }

  #final p,
  #final a {
    padding: 6px;
    font-size: 0.8rem;
  }

  .contatos,
  .pagamentos,
  .map {
    width: 32.33%;
  }

  .pagamentos h2 {
    font-size: 17px !important;
  }

  .localizacao {
    display: none;
  }
  .itens {
    border-top: 1px solid #333;
    margin-top: 5px;
    padding: 5px;
  }

  .container_itens {
    display: flex;
    justify-content: space-between;
    flex-flow: row;
    padding: 0px 30px;
  }

  .horarios {
    margin-top: 50px;
    font-size: 25px;
  }

  .agenda p {
    font-size: 29px !important;
  }
}

@media (min-width: 1026px) {
  /* ======carrossel======= */
  .carousel-slide {
    min-width: 33.3333%;
  }
  /* ======fina=== */
  .localizacao,
  iframe {
    width: 100%;
    height: 200px;
  }
  .localizacao {
    width: 23.33%;
  }

  .avaliacao {
    width: 31.33%;
    height: 200px;
  }

  .final {
    background-image: none;
    border-top: 1px solid #333;
    padding: 15px !important;
    color: white;
  }

  #final {
    padding: 0px 30px;
  }
}
