* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bgTop), var(--bgBottom));
}

/* LAYOUT */
.page {
  min-height: 100%;
  display: flex;
  justify-content: center;
  padding: 22px 20px 34px;
  width: 100%;
}

.container {
  width: 100%;
  max-width: var(--containerMax);
  margin: 0 auto;
  padding: 0 var(--containerPadding);
}

/* HERO */
.hero {
  text-align: center;
  padding: 8px 0 10px;
}

.logoWrap {
  width: 150px;
  height: 150px;
  margin: 0 auto 18px;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(145deg, var(--text), var(--text));
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.28),
    0 0 0 6px rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
}

.logoWrap img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 35%;
  display: block;
}

.headline {
  margin: 6px 0 10px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0.6px;
  font-weight: 800;
  text-transform: uppercase;
}

.chip {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(128, 128, 176, 0.55);
  color: var(--lightText);
  font-weight: 700;
  font-size: 13px;
  background: rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* META */
.metaGrid {
  margin: 10px auto 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.metaCard {
  background: var(--cardBg);
  border: 1px solid var(--cardStroke);
  border-radius: var(--radiusSm);
  padding: 12px;
  box-shadow: var(--shadowSoft);
  text-align: center;
}

.metaLabel {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}

.metaValue {
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.location {
  color: var(--text);
  font-size: 15px;
}
.stars {
  color: var(--stars);
  letter-spacing: 1px;
  font-size: 14px;
}

/* TABS */
.tabs {
  margin-top: 10px;
  background: rgba(0, 0, 0, 0.14);
  border: 1px solid var(--cardStroke);
  border-radius: var(--radiusSm);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 6px;
  gap: 6px;
}

.tab {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  padding: 12px 8px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.15s ease;
  white-space: nowrap;
  font-size: 13px;
}

.tab:hover {
  background: rgba(255, 255, 255, 0.06);
}

.tab.active {
  background: #fff;
  color: var(--bgTop);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.panel {
  display: none;
}
.panel.active {
  display: block;
}

/* CONTATOS */
.contactList {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contactCard {
  background: var(--surface);
  border-radius: 16px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.contactCard .left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.iconBadge {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--brandSoft);
  border: 1px solid rgba(128, 128, 176, 0.25);
  color: #fff;
}

.iconBadge.wa {
  background: var(--wa);
}
.iconBadge.phone {
  background: linear-gradient(145deg, var(--brand), var(--brand2));
}

.text .title {
  font-weight: 800;
  color: #2a2953;
  font-size: 16px;
}

.text .sub {
  margin-top: 4px;
  font-size: 13px;
  color: #6a6890;
}

.saveBtn {
  border: 0;
  padding: 8px 12px;
  border-radius: 10px;
  background: var(--btn);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(128, 128, 176, 0.28);
}

.saveBtn:hover {
  background: var(--btnHover);
}

/* INSTAGRAM */
.igBtn {
  border-radius: 16px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow);
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.igLeft {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.igLeft i {
  font-size: 18px;
}

/* SERVICES */
.serviceBox {
  margin-top: 12px;
  background: var(--cardBg);
  border: 1px solid var(--cardStroke);
  border-radius: 16px;
  padding: 12px 12px;
  box-shadow: var(--shadow);
}

.serviceList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.serviceList li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
}

.serviceList svg {
  width: 18px;
  height: 18px;
  fill: var(--lightText);
}

/* ADDRESS */
.addressBox {
  margin-top: 12px;
  background: var(--cardBg);
  border: 1px solid var(--cardStroke);
  border-radius: 16px;
  padding: 18px 14px;
  text-align: center;
  box-shadow: var(--shadow);
}

.addrLine {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.addrLine.strong {
  font-weight: 800;
}

.mapLink {
  display: inline-block;
  font-weight: 900;
  color: var(--stars);
  text-decoration: none;
  text-transform: uppercase;
  margin: 14px 0 12px;
}

.mapLink:hover {
  text-decoration: underline;
  opacity: 0.85;
}

/* FOOTER */
.footer {
  margin-top: 18px;
  text-align: center;
  color: var(--lightText);
  font-size: 13px;
}

.footer a {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
}

.footer a:hover {
  text-decoration: underline;
}

/* TOAST */
.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: rgba(10, 12, 40, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 10px 12px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: none;
  align-items: center;
  gap: 10px;
  z-index: 999;
}

.toast.show {
  display: flex;
}

/* SOBRE (SEO TEXT COMPLETO) */
.seoText {
  margin: 10px 0 6px;
  background: var(--cardBg);
  border: 1px solid var(--cardStroke);
  border-radius: var(--radius);
  padding: 14px;
}

.seoText h2 {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--lightText);
}

.seoText p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13.5px;
  line-height: 1.55;
}

/* INFO GRID */
.infoGrid {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.infoItem {
  text-align: left;
  min-width: 150px;
}

.infoLabel {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
}

.infoLink {
  color: var(--lightText);
  font-weight: 800;
  text-decoration: none;
}

.infoLink:hover {
  text-decoration: underline;
}

.infoText {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

/* MAPA */
.mapWrap {
  margin-top: 14px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mapWrap iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

.pin {
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: var(--bgPin);
  display: grid;
  place-items: center;
  border: 1px solid var(--bgPinBorder);
}

.pin i {
  color: #ff6b6b;
  font-size: 22px;
}

@media (max-width: 480px) {
  .infoGrid {
    display: flex; /* garante que é flex no mobile */
    flex-direction: column; /* empilha */
    align-items: center;
    gap: 12px; /* <<< ajuste aqui (10–14 costuma ficar perfeito) */
    margin-top: 14px; /* opcional: aproxima do endereço */
  }

  .infoItem {
    min-width: unset; /* remove “coluna” larga */
    text-align: center;
  }

  .infoLabel {
    text-align: center;
  }

  .mapLink {
    margin-top: 20px;
  }
}
