/* ============================================================
   Fashion Hairs by Carla Rodrigues
   Estilo inspirado na template "Monterey Hair Salon":
   Inter · preto e branco · cinza claro · cantos arredondados · botões pill
   ============================================================ */

:root {
  --bg: #f0f0f0;
  --grey: #e7e7e5;
  --white: #ffffff;
  --ink: #1c1917;
  --ink-soft: #2b2724;
  --muted: #726c66;
  --line: rgba(28, 25, 23, 0.12);
  --dark: #161310;
  --dark-2: #211d19;

  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --serif: "Cinzel", Georgia, "Times New Roman", serif;

  --maxw: 1200px;
  --gutter: 14px;
  --radius: 24px;
  --radius-sm: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.04;
  color: var(--ink);
}
h1 {
  font-size: clamp(2.7rem, 6.5vw, 5.2rem);
  font-weight: 600;
}
h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}
h3 {
  font-size: 1.25rem;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.eyebrow-light {
  color: rgba(255, 255, 255, 0.6);
}
.lead {
  color: var(--muted);
  font-size: 1.1rem;
}
.muted-note {
  color: var(--muted);
  font-size: 0.85rem;
}

/* ---------------- Botões ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.85em 1.6em;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn-pill {
  border-radius: 999px;
}
.btn-lg {
  padding: 1.05em 2em;
  font-size: 1rem;
}
.btn-block {
  width: 100%;
}
.btn:hover {
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
}
.btn-light:hover {
  background: #ece9e5;
}
.btn-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-dark:hover {
  background: #000;
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--ink);
}
.btn-arrow {
  display: grid;
  place-items: center;
  width: 1.7em;
  height: 1.7em;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 0.9em;
}

/* ---------------- Placeholders de foto ---------------- */
.ph {
  position: relative;
  background: linear-gradient(135deg, #514b45, #1c1917 75%);
  overflow: hidden;
}
.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.04) 0,
    rgba(255, 255, 255, 0.04) 2px,
    transparent 2px,
    transparent 16px
  );
}
.ph::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.35);
  padding: 6px 12px;
  border-radius: 999px;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  margin: var(--gutter);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: min(92vh, 820px);
  display: flex;
  flex-direction: column;
  color: var(--white);
}
.hero-photo {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, #4a443e 0%, #221f1b 55%, #141210 100%);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  /* foto a cores (interior real do salão); leve realce */
  filter: saturate(1.05) contrast(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  /* um pouco mais escuro ao centro para o texto branco ficar nítido sobre a foto a cores */
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.42) 38%,
    rgba(0, 0, 0, 0.62) 100%
  );
}

/* Navegação */
.nav {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 30px;
}
/* Logótipo recriado em código (estilo inscricional, fonte Cinzel):
   linha · FASHION HAIRS · BY CARLA RODRIGUES · linha */
.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  line-height: 1;
  padding: 2px 0;
}
.logo-rule {
  display: block;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  opacity: 0.92;
}
.logo-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.22rem;
  letter-spacing: 0.18em;
  /* o letter-spacing acrescenta espaço à direita; o text-indent compensa
     o mesmo valor à esquerda para o texto ficar centrado entre as linhas */
  text-indent: 0.18em;
}
.logo-by {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  opacity: 0.88;
}
/* Ícones SVG inline (calendário, pin) */
.ico {
  width: 1.05em;
  height: 1.05em;
  flex: none;
  vertical-align: -0.18em;
}
.nav-links {
  display: flex;
  gap: 30px;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.92;
  transition: opacity 0.2s;
}
.nav-links a:hover {
  opacity: 1;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-loc {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.88rem;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.nav-loc:hover {
  opacity: 1;
}
/* Botão de idioma PT | EN */
.lang-toggle {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  overflow: hidden;
  flex: none;
}
.lang-toggle button {
  background: transparent;
  color: inherit;
  border: 0;
  padding: 5px 11px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0.7;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}
.lang-toggle button.active {
  background: var(--white);
  color: var(--ink);
  opacity: 1;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-book {
  padding: 0.58em 1.3em;
  font-size: 0.88rem;
}

/* Conteúdo do hero */
.hero-content {
  position: relative;
  z-index: 4;
  margin: auto;
  text-align: center;
  padding: 40px 24px 96px;
  max-width: 900px;
}
.pill-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  margin-bottom: 1.6rem;
  animation: fadeUp 0.7s var(--ease) both;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.4rem;
  animation: fadeUp 0.7s var(--ease) 0.08s both;
}
.hero-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 33ch;
  margin: 0 auto 2.2rem;
  animation: fadeUp 0.7s var(--ease) 0.16s both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.7s var(--ease) 0.24s both;
}
.hero-trust {
  margin: 2.8rem 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  transition: color 0.2s var(--ease);
  animation: fadeUp 0.7s var(--ease) 0.32s both;
}
.hero-trust:hover {
  color: #fff;
}
.hero-trust:hover span:not(.hero-trust-arrow) {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero-trust .stars-svg {
  height: 0.95em;
  width: auto;
  color: #fff;
  flex: none;
}
/* Seta subtil que aparece no hover - sinaliza que é clicável */
.hero-trust-arrow {
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.hero-trust:hover .hero-trust-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Entrada subtil: anima APENAS o transform - a opacidade fica sempre a 1,
   por isso o conteúdo está sempre visível mesmo que a animação não corra. */
@keyframes fadeUp {
  from {
    transform: translateY(16px);
  }
  to {
    transform: none;
  }
}

/* ===================== SECÇÕES ===================== */
.section {
  padding: clamp(56px, 8vw, 110px) 0;
}
.section-grey {
  background: var(--grey);
}
.section-dark {
  background: var(--dark);
  color: var(--white);
  margin: var(--gutter);
  border-radius: var(--radius);
}
.section-dark h2 {
  color: var(--white);
}
.section-head-center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(36px, 5vw, 60px);
}

/* ---------------- Sobre ---------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.about-copy p {
  color: var(--muted);
  margin: 0 0 1.1rem;
}
.about-copy h2 {
  margin-bottom: 1.4rem;
}
.stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 2.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.stat-lbl {
  font-size: 0.86rem;
  color: var(--muted);
}
.about-photo {
  position: relative;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Galeria (masonry - mostra cada imagem na sua forma natural, sem cortar) */
.gallery {
  column-count: 3;
  column-gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin: 0 0 16px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--grey);
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-cta {
  text-align: center;
  margin-top: 2.4rem;
}
.photo-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
}
.photo-badge-top {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.photo-badge-main {
  font-size: 1.05rem;
  font-weight: 600;
}

/* ---------------- Menu de serviços ---------------- */
.services-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: clamp(32px, 4vw, 52px);
  flex-wrap: wrap;
}
.services-head h2 {
  margin: 0.2rem 0;
}
.menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.menu-cat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
}
.menu-cat h3 {
  font-size: 1.35rem;
  padding-bottom: 1rem;
  margin-bottom: 0.6rem;
  border-bottom: 1px solid var(--line);
}
.menu-cat li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 0.62rem 0;
  border-bottom: 1px solid var(--line);
}
.menu-cat li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.item-name {
  font-weight: 500;
}
.item-price {
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  color: var(--ink);
}

/* Extras / adicionais - faixa de largura total por baixo das categorias */
.menu-extras {
  margin-top: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 30px;
}
.menu-extras h3 {
  font-size: 1.25rem;
  padding-bottom: 0.9rem;
  margin-bottom: 0.2rem;
  border-bottom: 1px solid var(--line);
}
.menu-extras ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0 40px;
}
.menu-extras li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 0.62rem 0;
  border-bottom: 1px solid var(--line);
}
.services-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 2.4rem;
}

/* ---------------- Porquê (features) ---------------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: center;
}
.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
}
.feature h3 {
  margin-bottom: 0.5rem;
}
.feature p {
  color: var(--muted);
  margin: 0;
  font-size: 0.96rem;
}

/* ---------------- Avaliações ---------------- */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  margin: 0;
}
.stars {
  color: #1c1917;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.review blockquote {
  margin: 0 0 1.2rem;
  font-size: 1.08rem;
  line-height: 1.5;
}
.review figcaption {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------------- Contactos / horário ---------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: stretch;
}
.hours {
  width: 100%;
  border-collapse: collapse;
  margin: 1.4rem 0 0.4rem;
}
.hours td {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}
.hours td:last-child {
  text-align: right;
  color: var(--muted);
}
.find-us {
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.find-us h3 {
  margin-bottom: 0.7rem;
}
.address {
  margin: 0 0 1.2rem;
  font-size: 1.05rem;
}
.contact-lines li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-lines li span {
  color: var(--muted);
  font-size: 0.9rem;
}
.contact-lines a {
  font-weight: 500;
}
.contact-btns {
  display: flex;
  gap: 12px;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}
.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  background: var(--grey);
  border: 1px solid var(--line);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(1) contrast(1.05);
}

/* ---------------- Marcar (booking) ---------------- */
.booking-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.booking-intro p {
  color: rgba(255, 255, 255, 0.75);
}
.booking-intro h2 {
  margin-bottom: 1.1rem;
}
.booking-points {
  margin-top: 1.6rem;
  display: grid;
  gap: 0.7rem;
}
.booking-points li {
  position: relative;
  padding-left: 1.6rem;
  color: rgba(255, 255, 255, 0.88);
}
.booking-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #fff;
}
.booking-form {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
}
.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8em 0.9em;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--white);
}
.field textarea {
  resize: vertical;
}
.form-actions {
  display: grid;
  gap: 10px;
  margin-top: 0.5rem;
}
.section-dark .form-actions .btn-light {
  background: var(--ink);
  color: var(--white);
}
.section-dark .form-actions .btn-light:hover {
  background: #000;
}
.section-dark .form-actions .btn-outline-light {
  color: var(--ink);
  border-color: var(--line);
}
.section-dark .form-actions .btn-outline-light:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.form-fineprint {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  margin: 0.9rem 0 0;
}
.form-error {
  color: #b3261e;
  font-size: 0.88rem;
  margin: 0 0 0.4rem;
}
.form-success {
  background: #e8f0e3;
  border: 1px solid #b8d3a8;
  color: #2f5023;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* ---------------- Rodapé ---------------- */
.site-footer {
  background: var(--dark);
  color: var(--white);
  margin: var(--gutter) var(--gutter) 0;
  border-radius: var(--radius) var(--radius) 0 0;
  padding-top: 8px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 48px 24px 32px;
  flex-wrap: wrap;
}
.footer-brand .brand {
  color: var(--white);
  align-items: flex-start;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0.7rem 0 0;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: var(--white);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  flex-wrap: wrap;
  gap: 10px;
}
.to-top:hover {
  color: var(--white);
}

/* ---------------- Botão flutuante ---------------- */
.fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--white);
  padding: 0.85em 1.3em;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.92rem;
  min-height: 44px;
  box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s var(--ease);
}
.fab:hover {
  transform: translateY(-3px);
}

/* ===================== RESPONSIVO ===================== */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(80vw, 320px);
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 32px 40px;
    gap: 22px;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    z-index: 20;
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-links a {
    font-size: 1.1rem;
    color: #fff;
  }
  .nav-toggle {
    display: flex;
    color: #fff;
    z-index: 25;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-loc {
    display: none;
  }

  .about-grid,
  .contact-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }
  .about-photo {
    max-width: 460px;
  }
  .menu,
  .features,
  .reviews {
    grid-template-columns: 1fr;
  }
  .gallery {
    column-count: 2;
  }
  .services-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }
  :root {
    --gutter: 10px;
    --radius: 18px;
  }
  .nav {
    padding: 18px 20px;
  }
  .nav-right {
    gap: 10px;
  }
  .logo-title {
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-indent: 0.12em;
  }
  .logo-by {
    font-size: 0.44rem;
    letter-spacing: 0.24em;
    text-indent: 0.24em;
  }
  .nav-toggle {
    padding: 14px 10px; /* 44×44 touch target */
    justify-content: center;
    align-items: center;
  }
  .nav-book {
    display: none; /* FAB trata do agendamento em mobile */
  }
  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .field-row .field {
    margin-bottom: 1rem;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .fab span:last-child {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
