/* Refinamentos visuais: tipografia moderna, marca textual e enquadramento da fachada */
.brand__fallback {
  font-family: "Comfortaa", sans-serif;
  font-style: normal;
  letter-spacing: -1px;
}

.brand__fallback b,
.brand__fallback em {
  font-weight: 700;
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.button--whatsapp {
  gap: 12px;
}

.button--whatsapp .button__label {
  flex: 1;
  font-size: inherit;
}

.whatsapp-float .whatsapp-icon {
  width: 34px;
  height: 34px;
}

.contact__hours {
  max-width: 610px;
  margin-top: 22px;
  padding: 20px;
  border: 1px solid #0003;
  display: grid;
  gap: 10px;
}

.contact__hours > span {
  margin-bottom: 5px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.contact__hours > div {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-size: 12px;
}

.contact__hours strong {
  font-weight: 600;
}

.contact__hours b {
  font-weight: 800;
}

@media (max-width: 480px) {
  .contact__hours > div {
    display: grid;
    gap: 4px;
  }
}

.facade > img {
  object-position: left center;
  transform: scale(1.25);
  transform-origin: left center;
}

.instagram__poster {
  align-self: center;
  padding: 12px;
}

.instagram__poster > img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 720px;
  object-fit: contain;
  background: #000;
}

.instagram__poster .instagram__card-footer {
  padding: 17px 8px 5px;
}

.hero h1,
.about h2,
.section-heading h2,
.why h2,
.instagram__intro h2,
.contact h2,
.facade h2 {
  letter-spacing: -.055em;
}

.hero__logo {
  mix-blend-mode: screen;
}

/* Enquadramento completo da ilustração no computador. */
.hero__visual {
  width: min(48vw, 760px);
  height: min(31vw, 480px);
  right: 2vw;
  top: 25%;
}

/* A abertura usa o mesmo preto puro presente no fundo do logo. */
.hero {
  background-color: #000;
}

/* Ícones sempre acima dos títulos dos serviços. */
.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  min-height: 58px;
  margin: 0 0 22px;
}

.service-card h3 {
  width: 100%;
  margin: 0 0 13px;
}

.service-card__icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

img { max-width: 100%; }
.hero__content, .about__content, .contact__content { min-width: 0; }

/* Galeria dinâmica dos bastidores. */
.gallery { background: #080808; }
.gallery__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 310px; gap: 12px; }
.gallery__item { position: relative; min-width: 0; margin: 0; overflow: hidden; background: #151515; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(1.05); transition: transform .55s ease, filter .4s ease; }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, #000d 100%); pointer-events: none; }
.gallery__item:hover img { transform: scale(1.045); filter: saturate(1) contrast(1.02); }
.gallery__item figcaption { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 19px; color: #fff; font: 700 18px/1.15 var(--display); text-transform: uppercase; }
.gallery__item figcaption span { display: block; margin-top: 6px; color: var(--yellow); font: 700 8px/1.3 var(--body); letter-spacing: 1.4px; }

@media (max-width: 1120px) {
  .header { height: 72px; }
  .menu-button { display: block; z-index: 22; }
  .nav { position: fixed; inset: 0; z-index: 21; background: #090909; display: flex; flex-direction: column; justify-content: center; gap: 26px; transform: translateX(100%); transition: transform .35s ease; font-size: 15px; }
  .nav.open { transform: translateX(0); }
  .brand { z-index: 22; }
}

@media (max-width: 760px) {
  .hero { min-height: 760px; padding-top: 125px; }
  .hero__content { width: 100%; }
  .hero__visual {
    width: 112vw;
    height: 72vw;
    max-width: none;
    max-height: none;
    left: -6vw;
    right: auto;
    top: auto;
    bottom: 28px;
    opacity: .62;
  }
  .hero__logo { object-fit: contain; object-position: center; }
  .facade > img {
    content: url("fachada-placa.jpg?v=20260731-6");
    transform: none;
    object-position: center;
  }
  .section { padding-left: 20px; padding-right: 20px; }
  .section-heading h2, .reviews__heading h2, .instagram__intro h2, .why h2, .contact h2, .facade h2 { overflow-wrap: anywhere; }
  .instagram__poster, .instagram__banner { width: calc(100% - 10px); }
  .contact__address { align-items: flex-start; }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 190px; gap: 8px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 2; }
  .gallery__item figcaption { left: 14px; right: 14px; bottom: 13px; font-size: 14px; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 51px; }
  .about h2, .section-heading h2, .instagram__intro h2, .why h2, .facade h2 { font-size: 43px; }
  .contact h2 { font-size: 52px; }
  .button { min-width: 0; }
}

@media (max-width: 700px) {
  .facade > img {
    content: url("fachada-placa.jpg?v=20260731-6");
    top: 28px;
    bottom: auto;
    height: 270px;
    background: #000;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .instagram__poster {
    max-width: 520px;
  }

  .hero h1 {
    font-size: clamp(58px, 16vw, 82px);
  }
}

@media (max-width: 520px) {
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 245px; }
  .gallery__item--wide, .gallery__item--tall { grid-column: auto; grid-row: auto; }
}

.reviews {
  background: #0d0d0d;
  color: var(--white);
}

.reviews__heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
  margin-bottom: 55px;
}

.reviews__heading h2 {
  margin: 18px 0 0;
  font: 800 clamp(48px, 6vw, 84px)/.95 var(--display);
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.reviews__heading h2 em {
  color: var(--yellow);
  font-style: normal;
}

.reviews__score {
  min-width: 230px;
  padding-left: 30px;
  border-left: 1px solid #ffffff25;
  display: grid;
}

.reviews__score strong {
  font-size: 65px;
  line-height: 1;
}

.reviews__score span,
.review-card__stars {
  color: var(--yellow);
  letter-spacing: 3px;
}

.reviews__score small {
  color: #8e8e89;
  margin-top: 8px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.review-card {
  min-height: 300px;
  padding: 28px;
  background: #151515;
  border: 1px solid #292929;
  display: flex;
  flex-direction: column;
  transition: .25s;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
}

.review-card__top {
  display: flex;
  align-items: center;
  gap: 13px;
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #090909;
  background: var(--yellow);
  font-weight: 800;
}

.review-card__top div {
  display: grid;
  gap: 5px;
}

.review-card__top strong {
  font-size: 12px;
}

.review-card__top small {
  color: #777773;
  font-size: 9px;
}

.review-card__stars {
  margin: 25px 0 15px;
  font-size: 15px;
}

.review-card blockquote {
  margin: 0;
  color: #d2d2cd;
  font-size: 13px;
  line-height: 1.75;
}

.reviews__action {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

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

@media (max-width: 600px) {
  .reviews__heading {
    display: grid;
  }

  .reviews__score {
    padding: 20px 0 0;
    border-left: 0;
    border-top: 1px solid #ffffff25;
  }

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

  .review-card {
    min-height: auto;
  }
}
