/* =========================
   RESET / BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background: linear-gradient(to bottom, #f7f7f8 0%, #ffffff 300px);
  color: #111;
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  height: 40vh;
  min-height: 320px;
  max-height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("background.jpg") center / cover no-repeat;
  filter: blur(3px);
  transform: scale(1.04);
  transition: filter 0.6s ease;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.22);
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(2px);

  height: 140px; /* maior = transição mais suave */

  background: linear-gradient(
    to bottom,
    rgba(245,245,247,0),
    rgba(245,245,247,0.6) 60%,
    #f5f5f7 100%
  );

  z-index: 2;
  pointer-events: none;
}


.hero:hover .hero-bg {
  filter: blur(1px);
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
}

.hero-logo {
  width: 420px;
  max-width: 90%;
}

.hero-hover-text {
  margin-top: 12px;
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #444;
  opacity: 0;
  transform: translateY(4px);
  transition: .4s;
}

.hero:hover .hero-hover-text {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   SERVIÇOS
========================= */
.services-section {
  position: relative;
  background: #f5f5f7;
  padding: 60px 20px 120px;
}

.services-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;

  background: linear-gradient(
    to bottom,
    rgba(245,245,247,0),
    #ffffff
  );

  pointer-events: none;
}


.services-header {
  max-width: 1200px;
  margin: 0 auto 32px;
}

.services-header h2 {
  font-size: 32px;
  font-weight: 600;
}

.services-header p {
  font-size: 18px;
  color: #6e6e73;
}

.services {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  border-radius: 36px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 50px rgba(0,0,0,.22);
  transition: .4s;
}

.service-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 80px rgba(0,0,0,.35);
}

/* =========================
   OUTROS SERVIÇOS
========================= */
.extra-services {
  max-width: 1000px;
  margin: 80px auto 120px;
  padding: 0 24px;
  text-align: center;
}

.extra-services h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 48px; /* separa bem da lista */
  color: #1d1d1f;
  letter-spacing: -0.01em;
}

.extra-services-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 80px;

  max-width: 760px;   /* 👈 CHAVE DO PROBLEMA */
  margin: 0 auto;     /* 👈 centraliza o bloco */
  padding: 0;
}

.extra-services-list li {
  font-size: 19px;
  color: #6e6e73;
  text-align: left;
  position: relative;
  padding-left: 22px;
  line-height: 1.4;
}

.extra-services-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 18px;
  color: #1d1d1f;
}


/* =========================
   CTA
========================= */
.cta {
  text-align: center;
  padding: 40px 20px 70px;
  margin-top: 56px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 26px 56px;
  background: #000;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(0,0,0,.28);
  transition: .3s;
}

.whatsapp-btn img {
  width: 44px;
  filter: brightness(0) invert(1);
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
}

/* =========================
   LOCALIZAÇÃO
========================= */
.location {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px 120px;
}

.location-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.location-content h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2;
}

.location-content p {
  font-size: 19px;
  color: #6e6e73;
  max-width: 420px;
}


.location-map {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,.15);
}

.location-map iframe {
  width: 100%;
  height: 380px;
  border: none;
}

/* =========================
   AVALIAÇÕES – FINAL
========================= */
.reviews-section {
  background: #fff;
  padding: 120px 20px 180px;
  text-align: center;
}

.reviews-header {
  max-width: 720px;
  margin: 0 auto 60px;
}

.reviews-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 8px;
}

.reviews-header p {
  font-size: 18px;
  color: #6e6e73;
}

.reviews-carousel {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  touch-action: pan-y;

  /* 🔑 RESERVA ESPAÇO */
  min-height: 340px;
}

.review-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Cards empilhados */
.review-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(30px) scale(0.96);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  pointer-events: none;
}

.review-card.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
  z-index: 2;
}

.review-card.exit-left {
  opacity: 0;
  transform: translateX(-30px) scale(0.96);
  z-index: 1;
}

.review-card.exit-right {
  opacity: 0;
  transform: translateX(30px) scale(0.96);
  z-index: 1;
}

.review-card img {
  width: 100%;
  display: block;
  border-radius: 22px;
}

/* Setas */
.review-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
  transition: transform .25s ease;
  z-index: 10;
}

.review-nav:hover {
  transform: translateY(-50%) scale(1.08);
}

.review-nav.prev { left: -22px; }
.review-nav.next { right: -22px; }

@media (max-width: 600px) {
  .review-nav.prev { left: 8px; }
  .review-nav.next { right: 8px; }
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: #000;
  color: #fff;
  padding: 80px 20px 60px;
  text-align: center;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 24px;
}

.footer-address,
.footer-contact {
  color: #ccc;
  margin-bottom: 12px;
}

.footer-divider {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,.3);
  margin: 28px auto;
}

.footer-copy {
  font-size: 13px;
  color: #999;
}
