:root {
  --scroll-amount: -85%;
  --fonte-principal-family: "Open Sans", sans-serif;
  --cor-principal: #565585;
  --cor-secundaria: #121052;
  --cor-acento: #6a00ff;
  --cor-fundo-resultados: #f5f5f5;
  --cor-fundo-site: #e1d7f7;
}

body {
  background-color: var(--cor-fundo-site);
  height: 100vh;
  overflow-x: hidden;
  margin: 0;
}

.hero {
  position: relative;
  height: 70vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #e5d9f2;
  opacity: 0.4;
  z-index: 1;
}

.hero h1 {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  background-color: rgb(25, 24, 59, 0.3);
  text-align: center;
  color: white;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.nome {
  font-size: 3rem;
}

.hero-call {
  font-size: 1.5rem;
}

.button-consulta {
  align-items: center;
  appearance: none;
  background-image: radial-gradient(100% 100% at 100% 0, #6a00ff 0, #290e8c 100%);
  border: 0;
  border-radius: 6px;
  box-shadow: rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, rgba(58, 65, 111, .5) 0 -3px 0 inset;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-family: "JetBrains Mono", monospace;
  height: 48px;
  justify-content: center;
  line-height: 1;
  list-style: none;
  overflow: hidden;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  text-align: left;
  text-decoration: none;
  transition: box-shadow .15s, transform .15s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  will-change: box-shadow, transform;
  font-size: 18px;
}

.button-consulta:focus {
  box-shadow: #6a00ff 0 0 0 1.5px inset, rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #6a00ff 0 -3px 0 inset;
}

.button-consulta:hover {
  box-shadow: rgba(45, 35, 66, .4) 0 4px 8px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #6a00ff 0 -3px 0 inset;
  transform: translateY(-2px);
}

.button-consulta:active {
  box-shadow: #6a00ff 0 3px 7px inset;
  transform: translateY(2px);
}

.hero-content:last-child {
  margin-bottom: 10px;
  font-family: "JetBrains Mono", monospace;
  font-weight: 200;
}

@media (max-width: 700px) {
  .hero-call {
    font-size: 1rem;
  }

  .nome {
    font-size: 1.5rem;
  }

}

.carrossel {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  background-color: #121052;
}


.servicos {
  display: flex;
  white-space: nowrap;
  align-items: center;
  animation: scroll-infinito 30s linear infinite;
}


.carrossel:hover .servicos {
  animation-play-state: paused;
}

.servicos .servico,
.servicos i {
  margin-right: 30px;
}

.servicos .servico {
  font-size: 1.1em;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
  margin: 0;
  margin-right: 20px;
  margin-left: 20px;
  padding: 0;
}

.servicos i {
  font-size: 1.5em;
  color: white;
  margin: 0;
}

@keyframes scroll-infinito {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(var(--scroll-amount));
  }
}


.sobre {
  padding: 60px 20px 0 20px;
  background-color: #565585;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  color: white;
  position: relative;
}

.sobre-content {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
}

.sobre-texto-wrap {
  flex: 1 1 400px;
  margin-bottom: 80px;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.sobre-texto h1 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: 600;
}

.sobre-texto p {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.sobre-img {
  flex: 1 1 400px;
  max-width: 400px;
  width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
  bottom: 0;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 900px) {
  .sobre-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .sobre-texto-wrap {
    width: 90%;
    margin-top: 0;
    order: 1;
  }

  .sobre-img {
    width: 80%;
    max-width: 300px;
    margin-top: auto;
    margin-bottom: 0;
    order: 2;
  }
}

@media (max-width: 500px) {
  .sobre-texto h1 {
    font-size: 1.4rem;
  }

  .sobre-texto p {
    font-size: 0.9rem;
  }

  .sobre-img {
    display: none;
  }
}

/* --- SEÇÃO DE RESULTADOS E REVIEWS --- */
.resultados {
  background-color: var(--cor-fundo-resultados);
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.section-content {
  max-width: 1200px;
  width: 100%;
}

.resultados-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--cor-secundaria);
  margin-bottom: 40px;
  font-weight: 700;
}

.resultados-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.resultados-galeria,
.resultados-reviews {
  flex: 1 1 45%;
  min-width: 300px;
  max-width: 550px;
  padding: 20px;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: fit-content;

}


.resultados-galeria h3,
.resultados-reviews h3 {
  font-size: 1.5rem;
  color: var(--cor-principal);
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
}

/* Estilos de Carrossel */
.carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.carousel-slide {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide img {
  min-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.2);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  font-size: 24px;
  line-height: 1;
  border-radius: 4px;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

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

/* Estilo específico para o Carrossel de Reviews */
.reviews-carousel .carousel-slide {
  height: auto;
  align-items: center;
}

.reviews-carousel {
  height: auto;
  box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.20);
}

.review-card {
  min-width: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  text-align: center;
  box-sizing: border-box;
  height: fit-content;
}

.review-card .rating {
  color: gold;
  margin-bottom: 15px;
}

.review-card .rating .fa-star {
  font-size: 1.2rem;
  margin: 0 2px;
}

.review-comment {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.review-comment:before {
  content: '"';
}

.review-comment:after {
  content: '"';
}

.review-name {
  font-weight: 600;
  color: var(--cor-secundaria);
  font-size: 1rem;
}

.resultados-galeria {
  max-width: 250px;
}

.rating {
  padding-top: 10px;
}

@media (max-width: 600px) {
  .resultados-grid {
    flex-direction: column;
    align-items: center;
  }

  .resultados-galeria,
  .resultados-reviews {
    max-width: 90%;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .resultados-title {
    font-size: 2rem;
  }

  .reviews-carousel .carousel-slide {
    height: fit-content;
  }

  .review-comment {
    font-size: 1rem;
  }
}

.galeria {
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.galeria-title {
  font-size: 2.2rem;
  color: var(--cor-secundaria);
  margin-bottom: 40px;
  font-weight: 700;
}

.galeria-carousel-container {
  max-width: 900px;
  width: 100%;
}

.galeria-slide {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.galeria-slide img {
  min-width: calc(100% / 3);
  width: calc(100% / 3);
  height: auto;
  display: block;
  object-fit: cover;
  box-sizing: border-box;
  padding: 5px;
}

@media (max-width: 768px) {
  .galeria-carousel-container {
    max-width: 400px;
  }

  .galeria-slide img {
    min-width: 100%;
    width: 100%;
    padding: 0;
  }

  .galeria-title {
    font-size: 1.8rem;
  }
}

.contato {
  background-color: #565585;
  color: white;
  font-family: var(--fonte-principal-family);
  padding: 0;
  margin: 0;
}

.footer-info-bar {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  padding: 40px 20px;
  gap: 20px;
  flex-wrap: wrap;
  background-color: #565585;
}

.info-item {
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
}

.info-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #e1d7f7;
}

.info-item p {
  margin: 5px 0;
  font-size: 1rem;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #25d366;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 25px;
  margin-top: 15px;
  font-weight: 700;
  transition: background-color 0.3s;
}

.whatsapp-btn i {
  margin-right: 8px;
  font-size: 1.2rem;
}

.whatsapp-btn:hover {
  background-color: #1a9c4b;
}

.footer-redes {
  text-align: center;
  padding: 20px 0;
  background-color: var(--cor-principal);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.website-link {
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 300;
}

.redes-icones-footer a {
  color: white;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: color 0.3s;
}

.redes-icones-footer .fa-instagram:hover {
  color: #d6249f;
}

.redes-icones-footer .fa-facebook-f:hover {
  color: #1877f2;
}

.footer-map-container {
  width: 100%;
  height: 400px;
}

#map {
  width: 100%;
  height: 100%;
}

@media (max-width: 800px) {
  .footer-info-bar {
    flex-direction: column;
    align-items: center;
  }

  .info-item {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

.floating-button {
  position: fixed;
  right: 10px;
  bottom: 10px;
  margin: 20px;
  padding: 15px 30px;
  background-color: var(--cor-secundaria);
  color: white;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
  z-index: 999;
  box-shadow:
    0 0 0 3px var(--cor-fundo-site),
    0 0 0 6px var(--cor-secundaria),
    0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.floating-button:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 4px var(--cor-fundo-site),
    0 0 0 8px var(--cor-secundaria),
    0 6px 14px rgba(0, 0, 0, 0.3);
}
