:root {
  --bg: #704a51;
  --bg-2: #5f3f45;
  --text: #ffffff;
  --gold: #d4af37;
  --gold-2: #b99218;
  --dark: #1b1b1b;
  --muted: rgba(255, 255, 255, 0.86);
  --light: #ffffff;
  --light-2: #f7f4f2;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  --radius: 18px;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    "Apple Color Emoji",
    "Segoe UI Emoji";
  line-height: 1.55;
  background: var(--bg);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 72px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 55%),
    radial-gradient(900px 600px at 20% 10%, rgba(212, 175, 55, 0.25), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("./imagem1920x1080.jpeg");
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero__logo {
  width: min(320px, 74vw);
  margin: 0 auto 14px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.hero__title {
  margin: 0 0 16px;
  font-size: clamp(26px, 3.4vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero__text {
  max-width: 72ch;
  margin: 0 auto 22px;
  font-size: 16px;
  color: var(--muted);
}

.hero__text p {
  margin: 0 0 10px;
}

.hero__note {
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  color: #1b1b1b;
  border-radius: 999px;
  font-weight: 800;
  padding: 12px 18px;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(0, 0, 0, 0.12);
  transition: transform 0.08s ease;
}

.cta:active {
  transform: translateY(1px);
}

.cta--lg {
  padding: 14px 22px;
  font-size: 16px;
}

.cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.cta__icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.cta--lg .cta__icon img {
  width: 22px;
  height: 22px;
}

.shape {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
  z-index: 0;
}

.shape--bottom {
  bottom: -1px;
}

.shape--top {
  top: -1px;
}

.shape svg {
  position: relative;
  display: block;
  width: 100%;
  height: 58px;
}

.shape__fill {
  fill: var(--light);
}

.section {
  position: relative;
  overflow: hidden;
  padding: 54px 0;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section--light {
  background: var(--light);
  color: var(--dark);
}

.section--dark {
  background: var(--bg-2);
  padding-top: 84px;
}

.section--photo {
  padding-top: 84px;
  background:
    radial-gradient(900px 500px at 20% 10%, rgba(212, 175, 55, 0.22), transparent 55%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.08)),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}

.section__title {
  margin: 0 0 14px;
  font-size: clamp(20px, 2.4vw, 30px);
  text-align: center;
  letter-spacing: -0.01em;
}

.section__title--light {
  color: #fff;
}

.divider {
  width: 96px;
  height: 3px;
  margin: 0 auto 26px;
  background: var(--gold);
  border-radius: 999px;
}

.divider--light {
  background: rgba(255, 255, 255, 0.85);
}

.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service {
  background: var(--light-2);
  border-radius: var(--radius);
  padding: 18px 16px 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
}

.service__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(112, 74, 81, 0.12);
  color: rgba(112, 74, 81, 0.95);
  margin: 0 auto 10px;
}

.service__title {
  margin: 0 0 10px;
  font-size: 18px;
}

.service__text {
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
  font-size: 14px;
  line-height: 1.55;
}

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: center;
  padding-top: 28px;
  padding-bottom: 28px;
}

.about__content {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.about__content .cta {
  align-self: center;
}

.about__portrait {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  height: clamp(360px, 62vh, 560px);
  object-fit: contain;
}

.about__title {
  margin: 0 0 10px;
  font-size: clamp(20px, 2.6vw, 34px);
  line-height: 1.15;
}

.about__text {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.9);
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 18px 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
  text-align: center;
}

.feature__icon {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(112, 74, 81, 0.12);
  color: rgba(112, 74, 81, 0.95);
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 900;
}

.feature__icon--whatsapp {
  background: #25d366;
  color: #ffffff;
}

.feature__icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.feature__glyph {
  font-style: normal;
  font-weight: 900;
  font-size: 18px;
}

.feature__title {
  margin: 0 0 8px;
  font-size: 16px;
}

.feature__text {
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
  font-size: 14px;
}

.center {
  text-align: center;
  margin-top: 24px;
}

.section--reviews {
  background: linear-gradient(180deg, #ffffff, #f8f6f4);
}

.reviews {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 12px;
}

.reviews__track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 6px 4px 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.reviews__track::-webkit-scrollbar {
  display: none;
}

.reviews__track:focus-visible {
  outline: 2px solid rgba(112, 74, 81, 0.35);
  outline-offset: 6px;
  border-radius: 14px;
}

.reviews__nav {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
  color: rgba(0, 0, 0, 0.7);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.08s ease;
}

.reviews__nav:active {
  transform: translateY(1px);
}

.review {
  flex: 0 0 min(360px, 86vw);
  scroll-snap-align: start;
  background: var(--light-2);
  border-radius: var(--radius);
  padding: 16px 16px 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
}

.review__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.review__avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(112, 74, 81, 0.12);
  color: rgba(112, 74, 81, 0.95);
  font-weight: 900;
}

.review__meta {
  flex: 1;
  min-width: 0;
}

.review__name {
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review__date {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
}

.review__source {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.04);
  color: rgba(0, 0, 0, 0.65);
  font-weight: 900;
}

.review__stars {
  letter-spacing: 0.04em;
  color: var(--gold-2);
  margin: 0 0 8px;
  font-size: 16px;
}

.review__text {
  color: rgba(0, 0, 0, 0.75);
  font-size: 14px;
  line-height: 1.55;
}

.reviews__summary {
  margin: 14px 0 0;
  text-align: center;
  color: rgba(0, 0, 0, 0.65);
}

.faq {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

.faq__item {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.faq__question {
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
}

.faq__answer {
  padding: 0 16px 14px;
  color: rgba(255, 255, 255, 0.88);
}

.footer {
  background: rgba(0, 0, 0, 0.18);
  padding: 18px 0;
}

.footer__inner {
  text-align: center;
}

.footer__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}

.whatsapp-fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.18);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  font-weight: 900;
}

.whatsapp-fab__icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.whatsapp-fab__icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

@media (max-width: 1020px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .services {
    grid-template-columns: 1fr;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 44px 0;
  }

  .section--photo,
  .section--dark {
    padding-top: 74px;
  }

  .shape svg {
    height: 52px;
  }

  .reviews {
    grid-template-columns: 1fr;
  }

  .reviews__nav {
    display: none;
  }

  .review {
    flex-basis: min(340px, 88vw);
  }
}
