/* ══════════════════════════════════════════════════════════
   VÊNUS TATTOO — CSS
   Design editorial / premium
   Paleta: preto + branco/off-white + vinho #6E0E2B como acento
══════════════════════════════════════════════════════════ */

/* ─── VARIÁVEIS ─────────────────────────────────────────── */
:root {
  --black:      #0A0A0A;
  --off-black:  #121212;
  --white:      #F2F0EC;
  --off-white:  #E8E5DF;
  --wine:       #6E0E2B;
  --wine-dim:   rgba(110, 14, 43, 0.15);
  --gray-hi:    #2A2A2A;
  --gray-mid:   #666;
  --gray-lo:    #999;

  /* easing premium */
  --ease-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io:    cubic-bezier(0.65, 0, 0.35, 1);

  /* animação */
  --dur-reveal: 800ms;
  --dur-hover:  550ms;
}

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
ul, ol { list-style: none; }
strong { font-weight: 500; }

/* ─── NO-JS FALLBACK ────────────────────────────────────── */
.no-js [data-reveal] { opacity: 1 !important; transform: none !important; }

/* ─── SEÇÕES CLARO / ESCURO ─────────────────────────────── */
.s-dark  { background: var(--black); color: var(--white); }
.s-light { background: var(--white); color: var(--black); }

/* ─── TIPOGRAFIA ─────────────────────────────────────────── */
h1, h2, h3, .footer__logo, .nav__logo {
  font-family: 'Cormorant Garamond', serif;
}
h1 {
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}
h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.1;
}
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 1rem;
  display: block;
  line-height: 1.8;
}
.s-light .eyebrow { color: var(--wine); }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* ─── SCROLL REVEAL ─────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity  var(--dur-reveal) var(--ease-expo),
    transform var(--dur-reveal) var(--ease-expo);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─── BOTÕES ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  border: none;
  transition:
    background var(--dur-hover) var(--ease-expo),
    color var(--dur-hover) var(--ease-expo),
    border-color var(--dur-hover) var(--ease-expo);
}
/* Borda branca (hero / seções escuras) */
.btn--border {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(242, 240, 236, 0.4);
}
.btn--border:hover {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--white);
}
/* Escuro (seções claras) */
.btn--dark {
  background: var(--black);
  color: var(--white);
}
.btn--dark:hover {
  background: var(--wine);
}
/* Vinho preenchido */
.btn--wine {
  background: var(--wine);
  color: var(--white);
}
.btn--wine:hover {
  background: #5a0b22;
}

/* Links simples */
.link-wine {
  color: var(--wine);
  border-bottom: 1px solid var(--wine);
  padding-bottom: 1px;
  transition: opacity 400ms var(--ease-expo);
}
.link-wine:hover { opacity: 0.7; }
.c-wine   { color: var(--wine); }
.c-wine-ft { color: rgba(110, 14, 43, 0.7); }

/* ══════════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: background 600ms var(--ease-io), padding 600ms var(--ease-io);
}
#nav.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 0;
}
.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
}
.nav__links {
  display: flex;
  gap: 2.5rem;
}
.nav__links a {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(242, 240, 236, 0.6);
  transition: color 400ms var(--ease-expo);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--wine);
  transition: width 400ms var(--ease-expo);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav__toggle span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--white);
  transition: all 400ms var(--ease-expo);
}
.nav__toggle.open span:first-child { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.open span:last-child  { transform: rotate(-45deg) translate(5px, -5px); }

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 54fr 46fr;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10rem 4rem 5rem 3rem;
  position: relative;
  z-index: 1;
}
.hero__title {
  color: var(--white);
  margin: 1.5rem 0 2rem;
  font-weight: 300;
}
.hero__title em {
  font-style: italic;
  display: block;
  color: var(--off-white);
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(242, 240, 236, 0.55);
  margin-bottom: 2.5rem;
  line-height: 1.5;
}
.hero__media {
  position: relative;
  overflow: hidden;
}
.hero__media-fade {
  position: absolute;
  inset: 0 auto 0 0;
  width: 40%;
  background: linear-gradient(to right, var(--black) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left 65%;
  filter: grayscale(100%) contrast(1.08);
  transform: scale(1.15) translateY(0);
  will-change: transform;
  transition: transform 0.1s linear;
}

/* ══════════════════════════════════════════════════════════
   SOBRE
══════════════════════════════════════════════════════════ */
.sobre {
  display: grid;
  grid-template-columns: 45fr 55fr;
  min-height: 80vh;
}
.sobre__media {
  position: relative;
  overflow: hidden;
  margin: 0;
}
.sobre__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: grayscale(80%) contrast(1.05);
  transition: filter var(--dur-hover) var(--ease-expo);
}
.sobre__media:hover img {
  filter: grayscale(30%);
}
.sobre__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem 6rem 4rem;
}
.sobre__title {
  margin-bottom: 0.25rem;
  line-height: 0.9;
}
.sobre__years {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.sobre__content p {
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}
.sobre__content strong { color: var(--black); }
.sobre__content .btn { margin-top: 1rem; }

/* ══════════════════════════════════════════════════════════
   ESTILOS
══════════════════════════════════════════════════════════ */
.estilos {
  padding: 8rem 0;
}
.estilos__header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
  margin-bottom: 5rem;
}
.estilos__header h2 { color: var(--white); }

.estilos__list {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
}
.estilo {
  border-top: 1px solid rgba(242, 240, 236, 0.1);
  padding: 3rem 0;
  transition: border-color 500ms var(--ease-expo);
}
.estilo:last-child {
  border-bottom: 1px solid rgba(242, 240, 236, 0.1);
}
.estilo:hover {
  border-color: rgba(110, 14, 43, 0.4);
}
.estilo__row {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 3rem;
}
.estilo__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--wine);
  letter-spacing: 0.1em;
}
.estilo__body h3 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-style: italic;
  margin-bottom: 0.75rem;
  color: var(--white);
  transition: color 400ms var(--ease-expo);
}
.estilo:hover .estilo__body h3 { color: var(--off-white); }
.estilo__body p {
  color: var(--gray-lo);
  font-size: 0.9rem;
  max-width: 480px;
}

/* ══════════════════════════════════════════════════════════
   PORTFÓLIO
══════════════════════════════════════════════════════════ */
.portfolio {
  padding: 8rem 0;
}
.portfolio__header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.portfolio__header h2 { color: var(--black); }

.portfolio__filters {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}
.filter {
  padding: 0.6rem 1.25rem;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-right: none;
  color: var(--gray-mid);
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 500ms var(--ease-expo),
    color 500ms var(--ease-expo),
    border-color 500ms var(--ease-expo);
}
.filter:first-child { }
.filter:last-child { border-right: 1px solid rgba(0, 0, 0, 0.15); }
.filter:hover { color: var(--black); border-color: rgba(0,0,0,0.3); }
.filter.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* MASONRY via CSS columns */
.masonry {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
  column-count: 3;
  column-gap: 6px;
  transition: opacity 500ms var(--ease-io);
}
.masonry__item {
  break-inside: avoid;
  margin-bottom: 6px;
  display: block;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.masonry__item figure {
  margin: 0;
  overflow: hidden;
  position: relative;
}
.masonry__item img {
  width: 100%;
  height: 320px;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(100%) contrast(1.05);
  transition:
    transform var(--dur-hover) var(--ease-expo),
    filter var(--dur-hover) var(--ease-expo);
}
.masonry__item--tall img { height: 500px; }
.masonry__item--wide img { height: 240px; }

/* Posicionamento individual por foto */
.masonry__item:nth-child(1) img { object-position: left center !important; }
.masonry__item:nth-child(2) img { object-position: center bottom !important; height: 420px !important; }

.masonry__item:hover img {
  transform: scale(1.04);
  filter: grayscale(0%) contrast(1);
}
.masonry__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0);
  transition: background var(--dur-hover) var(--ease-expo);
  pointer-events: none;
}
.masonry__item:hover::after {
  background: rgba(110, 14, 43, 0.06);
}

.portfolio__ig {
  max-width: 1280px;
  margin: 3rem auto 0;
  padding: 0 3rem;
  font-size: 0.88rem;
  color: var(--gray-mid);
}

/* ══════════════════════════════════════════════════════════
   AGENDAMENTO
══════════════════════════════════════════════════════════ */
.agendamento {
  padding: 8rem 0;
}
.agendamento__header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
  margin-bottom: 5rem;
}
.agendamento__grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 5rem;
  align-items: start;
}
.agendamento__divider {
  background: rgba(242, 240, 236, 0.1);
  align-self: stretch;
}
.agendamento__col {
  padding-top: 0;
}
.agendamento__badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wine);
  border: 1px solid var(--wine);
  padding: 0.35rem 0.85rem;
  margin-bottom: 1.75rem;
}
.agendamento__badge--alt {
  color: var(--gray-lo);
  border-color: rgba(242, 240, 236, 0.2);
}
.agendamento__col h3 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-style: italic;
  margin-bottom: 1.25rem;
  color: var(--white);
}
.agendamento__col > p {
  color: var(--gray-lo);
  font-size: 0.92rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.agendamento__col ul {
  margin-bottom: 2.5rem;
}
.agendamento__col ul li {
  color: var(--gray-lo);
  font-size: 0.88rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(242, 240, 236, 0.07);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.agendamento__col ul li::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--wine);
  flex-shrink: 0;
}
.agendamento__col ul li strong { color: var(--white); font-weight: 400; }

/* ══════════════════════════════════════════════════════════
   LOCALIZAÇÃO
══════════════════════════════════════════════════════════ */
.localizacao {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
}
.localizacao__info {
  padding: 6rem 4rem 6rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}
.localizacao__info h2 { margin-bottom: 0.5rem; }
.localizacao__info address {
  font-size: 1rem;
  color: #333;
  line-height: 1.9;
}
.localizacao__horario-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 0.5rem;
}
.localizacao__horario p { color: #333; margin: 0; font-size: 0.92rem; line-height: 1.9; }
.localizacao__map {
  position: relative;
  overflow: hidden;
}
.localizacao__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(100%) contrast(1.05);
  display: block;
}

/* ══════════════════════════════════════════════════════════
   AVALIAÇÕES
══════════════════════════════════════════════════════════ */
.avaliacoes {
  padding: 8rem 0;
}
.avaliacoes header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
  margin-bottom: 4rem;
}
.reviews__grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(242, 240, 236, 0.08);
}
.review {
  background: var(--black);
  padding: 3rem;
}
.review__stars {
  color: var(--wine);
  font-size: 0.9rem;
  letter-spacing: 4px;
  margin-bottom: 1.5rem;
}
.review__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(242, 240, 236, 0.6);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.review__name {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-lo);
  font-style: normal;
  display: block;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
footer {
  background: var(--off-black);
  border-top: 1px solid var(--wine);
}
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 3rem 4rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
}
.footer__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1rem;
}
.footer__desc {
  color: var(--gray-lo);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 0;
}
.footer__social {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}
.footer__social a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-lo);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 400ms var(--ease-expo);
}
.footer__social a:hover { color: var(--white); }
.footer__col h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 1.5rem;
}
.footer__col p,
.footer__col address {
  color: var(--gray-lo);
  font-size: 0.85rem;
  line-height: 2;
}
.footer__col a {
  color: var(--gray-lo);
  transition: color 400ms var(--ease-expo);
  font-size: 0.85rem;
}
.footer__col a:hover { color: var(--white); }
.footer__closed { color: rgba(153, 153, 153, 0.4); font-size: 0.8rem; }

.footer__bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 3rem;
  border-top: 1px solid rgba(242, 240, 236, 0.07);
  color: rgba(153, 153, 153, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════════════════════
   WHATSAPP FLUTUANTE
══════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  animation: wa-beat 3s var(--ease-io) infinite;
  transition: transform 500ms var(--ease-expo), box-shadow 500ms var(--ease-expo), opacity 400ms var(--ease-expo);
  opacity: 0;
  pointer-events: none;
}
.wa-float.visible {
  opacity: 1;
  pointer-events: auto;
}
.wa-float:hover {
  transform: scale(1.1);
  animation: none;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}
@keyframes wa-beat {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.35); }
  50%       { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVO
══════════════════════════════════════════════════════════ */

/* ── TABLET GRANDE (≤ 1100px) ──────────────────────────── */
@media (max-width: 1100px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

/* ── TABLET (≤ 900px) ───────────────────────────────────── */
@media (max-width: 900px) {
  /* Hero: comprimir colunas mas manter split */
  .hero { grid-template-columns: 55fr 45fr; }

  /* Sobre: empilha */
  .sobre {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .sobre__media {
    height: 60vw;
    min-height: 300px;
    max-height: 480px;
  }
  .sobre__content { padding: 4rem 3rem; }

  /* Localização: empilha */
  .localizacao { grid-template-columns: 1fr; }
  .localizacao__info { padding: 4rem 3rem; }
  .localizacao__map {
    height: 360px;
    position: relative;
  }
  .localizacao__map iframe {
    position: static;
    height: 360px;
  }

  /* Avaliações: 1 col */
  .reviews__grid { grid-template-columns: 1fr; }
  .review { padding: 2.5rem 3rem; }
}

/* ── MOBILE (≤ 768px) ───────────────────────────────────── */
@media (max-width: 768px) {
  /* Tipografia: reduz mínimos do clamp */
  h1 { font-size: clamp(2.8rem, 11vw, 5rem); }
  h2 { font-size: clamp(2rem, 8vw, 3.5rem); }
  h3 { font-size: clamp(1.4rem, 5vw, 2rem); }

  /* ── NAV ── */
  .nav__inner { padding: 0 1.5rem; }
  .nav__toggle { display: flex; }
  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 999;
  }
  .nav__links.open { display: flex; }
  .nav__links a {
    font-size: 1rem;
    letter-spacing: 0.18em;
    color: var(--white);
  }

  /* ── HERO ── */
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 50vh auto;
    min-height: unset;
  }
  .hero__media {
    order: 1;
    position: relative;
    height: 50vh;
    inset: unset;
  }
  .hero__media-fade { display: none; }
  .hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left 65%;
    transform: none !important;
  }
  .hero__content {
    order: 2;
    position: relative;
    z-index: 1;
    padding: 3rem 1.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: none;
    min-height: unset;
  }
  .hero__title { margin: 1rem 0 1.5rem; line-height: 0.9; }
  .hero__sub   { margin-bottom: 2rem; }

  /* ── SOBRE ── */
  .sobre {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .sobre__media {
    height: 65vw;
    min-height: 260px;
    max-height: 400px;
  }
  .sobre__content { padding: 3rem 1.5rem; }
  .sobre__years   { margin-bottom: 1.75rem; padding-bottom: 1.75rem; }

  /* ── ESTILOS ── */
  .estilos { padding: 4rem 0; }
  .estilos__header { padding: 0 1.5rem; margin-bottom: 2.5rem; }
  .estilos__list   { padding: 0 1.5rem; }
  .estilo { padding: 2rem 0; }
  .estilo__row {
    grid-template-columns: 40px 1fr;
    gap: 1.25rem;
    align-items: start;
  }
  .estilo__num  { font-size: 0.85rem; padding-top: 0.35rem; }
  .estilo__body h3   { margin-bottom: 0.5rem; }
  .estilo__body p    { font-size: 0.88rem; }

  /* ── PORTFÓLIO ── */
  .portfolio { padding: 4rem 0; }
  .portfolio__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 0 1.5rem;
    margin-bottom: 2rem;
  }
  /* Filtros: scroll horizontal no mobile */
  .portfolio__filters {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
    padding-bottom: 2px; /* espaço p/ border */
  }
  .portfolio__filters::-webkit-scrollbar { display: none; }
  .filter {
    flex-shrink: 0;
    padding: 0.55rem 1rem;
    font-size: 0.68rem;
  }
  .filter:last-child { border-right: 1px solid rgba(0,0,0,0.15); }
  .masonry {
    column-count: 2;
    column-gap: 4px;
    padding: 0 1.5rem;
  }
  .masonry__item { margin-bottom: 4px; }
  .masonry__item img       { height: 220px; }
  .masonry__item--tall img { height: 340px; }
  .masonry__item--wide img { height: 170px; }
  .masonry__item:nth-child(1) img { object-position: left center !important; }
  .masonry__item:nth-child(2) img { object-position: center bottom !important; height: 300px !important; }
  .portfolio__ig { padding: 0 1.5rem; font-size: 0.85rem; }

  /* ── AGENDAMENTO ── */
  .agendamento { padding: 4rem 0; }
  .agendamento__header { padding: 0 1.5rem; margin-bottom: 3rem; }
  .agendamento__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 1.5rem;
  }
  .agendamento__divider { display: none; }
  .agendamento__col { width: 100%; }
  .agendamento__col + .agendamento__col {
    margin-top: 0;
    padding-top: 3rem;
    border-top: 1px solid rgba(242, 240, 236, 0.1);
    margin-top: 3rem;
  }
  .agendamento__col h3 { margin-bottom: 1rem; }
  .agendamento__col > p { margin-bottom: 1.5rem; }
  .agendamento__col ul { margin-bottom: 2rem; }

  /* ── LOCALIZAÇÃO ── */
  .localizacao { grid-template-columns: 1fr; }
  .localizacao__info {
    padding: 3.5rem 1.5rem;
    gap: 1.75rem;
  }
  .localizacao__map {
    height: 280px;
    position: relative;
  }
  .localizacao__map iframe {
    position: static;
    height: 280px;
    width: 100%;
  }

  /* ── AVALIAÇÕES ── */
  .avaliacoes { padding: 4rem 0; }
  .avaliacoes header { padding: 0 1.5rem; margin-bottom: 2.5rem; }
  .reviews__grid {
    grid-template-columns: 1fr;
    gap: 1px;
    padding: 0 1.5rem;
  }
  .review { padding: 2rem 1.5rem; }
  .review__text { font-size: 1rem; }

  /* ── FOOTER ── */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3.5rem 1.5rem 3rem;
  }
  .footer__bottom { padding: 1.25rem 1.5rem; }
  .footer__logo   { font-size: 1.8rem; }
  .footer__social { margin-top: 1.5rem; }

  /* ── WA FLOAT ── */
  .wa-float {
    width: 48px;
    height: 48px;
    bottom: 1.25rem;
    right: 1.25rem;
  }
}

/* ── MOBILE PEQUENO (≤ 480px) ───────────────────────────── */
@media (max-width: 480px) {
  h1 { font-size: clamp(2.5rem, 13vw, 3.5rem); }
  h2 { font-size: clamp(1.8rem, 9vw, 2.5rem); }

  /* Hero: ajuste fino p/ telas menores */
  .hero__content { padding: 5rem 1.25rem 2.5rem; }
  .hero__sub      { font-size: 1rem; }

  /* Sobre */
  .sobre__content { padding: 2.5rem 1.25rem; }

  /* Estilos */
  .estilos__header,
  .estilos__list { padding: 0 1.25rem; }

  /* Portfolio: mantém 2 cols para as fotos ficarem melhor */
  .masonry {
    column-count: 2;
    padding: 0 1.25rem;
  }
  .portfolio__header,
  .portfolio__ig { padding: 0 1.25rem; }

  /* Agendamento */
  .agendamento__header,
  .agendamento__grid { padding: 0 1.25rem; }
  .agendamento__badge { font-size: 0.6rem; padding: 0.3rem 0.7rem; }

  /* Localização */
  .localizacao__info { padding: 3rem 1.25rem; }

  /* Avaliações */
  .avaliacoes header,
  .reviews__grid { padding: 0 1.25rem; }

  /* Footer */
  .footer__inner  { padding: 3rem 1.25rem 2.5rem; }
  .footer__bottom { padding: 1rem 1.25rem; }

  /* Botões: largura total em mobile pequeno */
  .agendamento__col .btn { width: 100%; justify-content: center; }
  .localizacao__info .btn { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════════════════
   ACESSIBILIDADE
══════════════════════════════════════════════════════════ */
:focus-visible {
  outline: 1px solid var(--wine);
  outline-offset: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero__img {
    transform: none !important;
  }
}
