/* LS Hair Woman — salão de cabelo feminino
   Blush frio + rose muted, Cormorant + Outfit */

:root {
  --blush: #f7f0f2;
  --blush-deep: #efe4e8;
  --ink: #2c1f26;
  --ink-soft: #5a4450;
  --mute: #7d6672;
  --line: rgba(44, 31, 38, 0.1);
  --rose: #9a5365;
  --rose-hot: #b3687a;
  --pearl: #fffbfe;
  --wine: #3d2430;
  --gold: #a8896a;
  --max: 1120px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 1.15rem;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 70% 45% at 8% -8%, rgba(179, 104, 122, 0.1), transparent 55%),
    radial-gradient(ellipse 55% 40% at 100% 5%, rgba(168, 137, 106, 0.08), transparent 50%),
    linear-gradient(180deg, #fdf8fa 0%, var(--blush) 42%, var(--blush-deep) 100%);
  line-height: 1.55;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
}

body.nav-open {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* —— Typography —— */
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.85rem);
}

h2 em,
.section-head h2 em,
.salon-copy h2 em,
.visit-copy h2 em,
.hero-copy h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--rose-hot);
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.65rem;
}

.section-lead {
  margin-top: 0.85rem;
  max-width: 36rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.note {
  padding: 1.1rem 1.25rem;
  background: var(--pearl);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.note code {
  font-size: 0.88em;
  color: var(--rose);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    background 0.35s var(--ease),
    color 0.35s var(--ease),
    border-color 0.35s var(--ease),
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 10px 28px rgba(154, 83, 101, 0.28);
}

.btn-accent:hover {
  background: var(--rose-hot);
  box-shadow: 0 14px 32px rgba(154, 83, 101, 0.35);
}

.btn-ghost {
  background: rgba(255, 251, 254, 0.18);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 251, 254, 0.32);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-soft {
  background: var(--blush);
  color: var(--ink);
  border-color: var(--line);
}

.btn-soft:hover {
  background: var(--blush-deep);
  border-color: rgba(154, 83, 101, 0.25);
}

/* —— Header —— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 1rem 0;
  color: #fff;
  transition:
    background 0.4s var(--ease),
    color 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    backdrop-filter 0.4s var(--ease);
}

.site-header.is-solid,
.page-inner .site-header {
  background: rgba(255, 251, 254, 0.86);
  color: var(--ink);
  backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 1px 0 var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 2;
}

.logo-mark {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #f3e4d4 0%, transparent 42%),
    linear-gradient(145deg, #c9a882 0%, var(--gold) 45%, #8f6f52 100%);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.45),
    0 4px 14px rgba(168, 137, 106, 0.35);
  animation: breathe 4.5s var(--ease) infinite;
}

.logo-text {
  display: grid;
  line-height: 1.05;
}

.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.logo-text em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.82rem;
  font-weight: 500;
  opacity: 0.78;
  color: inherit;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.88;
  transition: opacity 0.25s, color 0.25s;
}

.nav a:hover,
.nav a.is-active {
  opacity: 1;
}

.site-header.is-solid .nav a:hover,
.site-header.is-solid .nav a.is-active,
.page-inner .nav a:hover,
.page-inner .nav a.is-active {
  color: var(--rose);
}

.nav-cta-mobile {
  display: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.header-cta:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.site-header.is-solid .header-cta,
.page-inner .header-cta {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
}

.site-header.is-solid .header-cta:hover,
.page-inner .header-cta:hover {
  background: var(--rose-hot);
  border-color: var(--rose-hot);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.45rem;
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: currentColor;
  transition:
    transform 0.35s var(--ease),
    opacity 0.25s,
    width 0.25s;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 7rem 0 4.5rem;
  background:
    var(--hero-image) center / cover no-repeat;
  color: #fff;
  isolation: isolate;
}

.hero-wash {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      180deg,
      rgba(44, 31, 38, 0.15) 0%,
      rgba(44, 31, 38, 0.28) 40%,
      rgba(61, 36, 48, 0.72) 78%,
      rgba(61, 36, 48, 0.88) 100%
    );
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 38rem;
  animation: heroIn 1.1s var(--ease) both;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
}

.hero-kicker {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 251, 254, 0.78);
  margin-bottom: 0.75rem;
}

.hero-copy h1 {
  color: #fff;
  font-size: clamp(1.85rem, 3.8vw, 2.65rem);
  font-weight: 500;
  max-width: 18ch;
  margin-bottom: 1rem;
}

.hero-lead {
  font-size: 1.08rem;
  line-height: 1.6;
  color: rgba(255, 251, 254, 0.88);
  max-width: 32rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* —— Rituals —— */
.rituals {
  background: var(--pearl);
  padding: 2.75rem 0;
  border-bottom: 1px solid var(--line);
}

.rituals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 2rem;
}

.ritual {
  display: grid;
  gap: 0.4rem;
}

.ritual strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
}

.ritual span {
  font-size: 0.92rem;
  color: var(--mute);
  line-height: 1.5;
}

/* —— Sections / Cares —— */
.section {
  padding: 5rem 0;
}

.cares {
  background:
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(179, 104, 122, 0.08), transparent 55%),
    var(--blush);
}

.section-head {
  margin-bottom: 2.5rem;
  max-width: 40rem;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head--center .section-lead {
  margin-inline: auto;
}

.section-lead {
  margin-top: 0.85rem;
  color: var(--mute);
  font-size: 1.02rem;
  max-width: 34rem;
}

/* —— Categorias com foto —— */
.categories {
  background:
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(179, 104, 122, 0.08), transparent 55%),
    var(--blush);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.cat-card {
  display: grid;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--pearl);
  border: 1px solid var(--line);
  min-height: 280px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(44, 31, 38, 0.1);
}

.cat-card__media {
  min-height: 150px;
  background:
    linear-gradient(180deg, transparent 40%, rgba(61, 36, 48, 0.35) 100%),
    var(--cat-image) center / cover no-repeat;
  transition: transform 0.7s var(--ease);
}

.cat-card:hover .cat-card__media {
  transform: scale(1.04);
}

.cat-card__body {
  display: grid;
  gap: 0.35rem;
  padding: 1.15rem 1.2rem 1.35rem;
  align-content: start;
}

.cat-card__body strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
}

.cat-card__body em {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--mute);
  line-height: 1.45;
}

.cat-card__cta {
  margin-top: 0.55rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rose);
}

/* —— Equipe —— */
.team {
  background: var(--pearl);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.team-card {
  text-align: center;
  padding: 1.75rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #fff 0%, var(--blush) 100%);
}

.team-card__avatar {
  width: 7.5rem;
  height: 7.5rem;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  overflow: hidden;
  background: var(--blush-deep);
  display: grid;
  place-items: center;
}

.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__avatar.is-empty span {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--rose);
}

.team-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.team-card p {
  color: var(--mute);
  font-size: 0.92rem;
  margin-bottom: 0.9rem;
}

.team-card a {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--rose);
}

.team-card a:hover {
  color: var(--rose-hot);
}

/* —— Depoimentos —— */
.quotes {
  background:
    radial-gradient(ellipse 50% 40% at 10% 0%, rgba(168, 137, 106, 0.12), transparent 55%),
    var(--blush-deep);
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.quote-card {
  padding: 1.6rem 1.4rem;
  background: var(--pearl);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: grid;
  gap: 1rem;
}

.quote-card p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink-soft);
}

.quote-card footer {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--rose);
}

.care-grid {
  display: grid;
  gap: 1rem;
}

.care-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 1.5rem;
  background: var(--pearl);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
}

.care-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(44, 31, 38, 0.08);
  border-color: rgba(154, 83, 101, 0.22);
}

.care-cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.35rem;
}

.cat-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
}

.cat-filters a {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--pearl);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.cat-filters a:hover,
.cat-filters a.is-active {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
}

.care-meta {
  flex: 1;
  min-width: 0;
}

.care-meta h3 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.care-meta p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 0.55rem;
}

.care-time {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--mute);
  background: var(--blush);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
}

.care-aside {
  display: grid;
  gap: 0.45rem;
  justify-items: end;
  text-align: right;
  flex-shrink: 0;
}

.care-aside strong {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--wine);
  font-variant-numeric: lining-nums tabular-nums;
}

.care-aside a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--rose);
  transition: color 0.25s;
}

.care-aside a:hover {
  color: var(--rose-hot);
}

.care-wa {
  font-weight: 500 !important;
  color: var(--mute) !important;
  font-size: 0.82rem !important;
}

.care-wa:hover {
  color: #1f9b57 !important;
}

.section-more {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  justify-content: center;
}

.section-more a {
  font-weight: 600;
  color: var(--rose);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, color 0.25s;
}

.section-more a:hover {
  color: var(--rose-hot);
  border-bottom-color: var(--rose-hot);
}

.section-more__wa {
  color: var(--ink-soft) !important;
}

.hero--soft .hero-copy {
  max-width: 34rem;
}

.hero--soft .hero-lead {
  max-width: 28rem;
}

/* —— Salon about —— */
.salon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(72vh, 640px);
  overflow: hidden;
}

.salon-media {
  background: var(--salon-image) center / cover no-repeat;
  min-height: 320px;
  transform-origin: center;
  animation: softZoom 18s var(--ease) infinite alternate;
}

.salon-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: clamp(2.5rem, 6vw, 4.5rem);
  background:
    linear-gradient(160deg, var(--blush) 0%, var(--blush-deep) 55%, #e8d8de 100%);
}

.salon-copy p {
  color: var(--ink-soft);
  max-width: 34rem;
}

.salon-copy .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* —— Moments gallery —— */
.moments {
  padding: 4.5rem 0 5rem;
  background: var(--pearl);
}

.moments-head {
  margin-bottom: 1.75rem;
}

.moments-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.25rem max(1.25rem, calc((100% - var(--max)) / 2 + 1.25rem)) 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(154, 83, 101, 0.35) transparent;
}

.moment {
  flex: 0 0 min(72vw, 320px);
  scroll-snap-align: start;
  border-radius: calc(var(--radius) + 0.15rem);
  overflow: hidden;
  background: var(--blush-deep);
  border: 1px solid var(--line);
}

.moment img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.moment:hover img {
  transform: scale(1.04);
}

.moment figcaption {
  padding: 0.75rem 1rem 1rem;
  font-size: 0.85rem;
  color: var(--mute);
}

/* —— Visit / contact —— */
.visit {
  padding: 5rem 0;
  background:
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(179, 104, 122, 0.1), transparent 50%),
    linear-gradient(180deg, var(--blush) 0%, #f3e8ec 100%);
}

.visit-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

.visit-copy p {
  color: var(--ink-soft);
  margin: 0.85rem 0 1.5rem;
  max-width: 32rem;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.visit-facts {
  display: grid;
  gap: 1.35rem;
  padding: 1.75rem;
  background: var(--pearl);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 0.2rem);
  box-shadow: 0 16px 40px rgba(44, 31, 38, 0.05);
}

.visit-facts > div {
  display: grid;
  gap: 0.35rem;
}

.visit-facts span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
}

.visit-facts a,
.visit-facts strong {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.4;
  font-variant-numeric: lining-nums tabular-nums;
}

.visit-facts a:hover {
  color: var(--rose);
}

.visit-facts em {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--mute);
}

.visit-facts ul {
  display: grid;
  gap: 0.35rem;
}

.visit-facts li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--line);
}

.visit-facts li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.visit-facts li b {
  font-weight: 600;
  color: var(--ink-soft);
}

.visit-facts li i {
  font-style: normal;
  color: var(--ink);
  text-align: right;
}

.visit-facts li.is-closed i {
  color: var(--mute);
}

/* —— Page inner (servicos / agendar) —— */
.page-hero {
  padding: 8.5rem 0 3rem;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(179, 104, 122, 0.12), transparent 55%),
    linear-gradient(180deg, #faf4f6 0%, var(--blush) 100%);
}

.page-hero h1 {
  margin-bottom: 0.65rem;
}

.page-hero p:not(.eyebrow) {
  color: var(--ink-soft);
  max-width: 36rem;
  font-size: 1.05rem;
}

.servicos-full {
  padding: 2.5rem 0 5rem;
  background: var(--blush);
}

.agenda-page {
  padding-top: 2rem;
  padding-bottom: 4.5rem;
  background: var(--blush);
}

.agenda-layout {
  max-width: var(--max);
}

/* —— Agenda —— */
.form-agendar {
  max-width: 520px;
  display: grid;
  gap: 1rem;
  margin: 2.5rem 0 4rem;
}

.form-agendar--wide {
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.25rem;
  align-items: start;
}

.agenda-fields {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  background: var(--pearl);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.agenda-picker {
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(179, 104, 122, 0.35), transparent 55%),
    linear-gradient(165deg, #5a3342 0%, var(--wine) 55%, #2a1820 100%);
  color: #fff;
  padding: 1.4rem 1.25rem 1.6rem;
  border-radius: var(--radius);
  box-shadow: 0 20px 48px rgba(61, 36, 48, 0.28);
}

.agenda-picker__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.agenda-picker__head h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0;
  text-align: center;
  color: #fff;
  text-transform: none;
}

.agenda-nav {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.agenda-nav:hover:not(:disabled) {
  border-color: rgba(243, 196, 206, 0.7);
  color: #f3c4ce;
  background: rgba(255, 255, 255, 0.12);
}

.agenda-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.agenda-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.45rem;
  margin-bottom: 1.35rem;
}

.agenda-day {
  display: grid;
  gap: 0.12rem;
  justify-items: center;
  padding: 0.65rem 0.2rem;
  border: 0;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  min-width: 0;
}

.agenda-day.is-hidden {
  display: none !important;
}

.agenda-day:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

.agenda-day.is-active {
  background: var(--rose-hot);
  color: #fff;
  box-shadow: 0 8px 20px rgba(179, 104, 122, 0.35);
}

.agenda-day__dow,
.agenda-day__mon {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.75;
}

.agenda-day__num {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: lining-nums tabular-nums;
}

.agenda-pros {
  margin-bottom: 1.35rem;
}

.agenda-pros h3,
.agenda-slots-wrap h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 0.8rem;
}

.agenda-pros__list {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: thin;
}

.agenda-pro {
  flex: 0 0 auto;
  width: 5.5rem;
  display: grid;
  gap: 0.45rem;
  justify-items: center;
  cursor: pointer;
  text-align: center;
}

.agenda-pro__avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid transparent;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.agenda-pro__avatar.is-any {
  background: var(--rose);
  color: #fff;
}

.agenda-pro.is-active .agenda-pro__avatar {
  border-color: #f3c4ce;
  box-shadow: 0 0 0 2px rgba(243, 196, 206, 0.28);
}

.agenda-pro__name {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.85);
}

.agenda-slots-wrap {
  margin-top: 0.25rem;
}

.agenda-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(5rem, 1fr));
  gap: 0.5rem;
  min-height: 3rem;
}

.agenda-slot {
  padding: 0.7rem 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.86rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.agenda-slot:hover {
  border-color: #f3c4ce;
  transform: translateY(-1px);
}

.agenda-slot.is-active {
  background: var(--rose-hot);
  border-color: var(--rose-hot);
}

.agenda-slots-hint,
.agenda-empty {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.65rem;
}

.form-agendar label {
  display: grid;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}

.form-agendar input,
.form-agendar select,
.form-agendar textarea {
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-agendar input:focus,
.form-agendar select:focus,
.form-agendar textarea:focus {
  border-color: rgba(154, 83, 101, 0.45);
  box-shadow: 0 0 0 3px rgba(154, 83, 101, 0.12);
}

.form-error {
  background: rgba(160, 40, 40, 0.08);
  border: 1px solid rgba(160, 40, 40, 0.25);
  color: #7a2222;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  font-size: 0.92rem;
  grid-column: 1 / -1;
}

.form-hint {
  font-size: 0.88rem;
  color: var(--mute);
}

.agenda-fields .btn {
  width: 100%;
  margin-top: 0.25rem;
}

/* —— Footer —— */
.site-footer {
  background:
    radial-gradient(ellipse 60% 80% at 0% 0%, rgba(154, 83, 101, 0.22), transparent 50%),
    linear-gradient(180deg, #4a2d38 0%, var(--wine) 100%);
  color: rgba(255, 251, 254, 0.88);
  padding: 3rem 0 2.5rem;
}

.footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: grid;
  gap: 0.35rem;
}

.footer-mark {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #c9a882, var(--gold));
  color: var(--wine);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 251, 254, 0.55);
}

.footer-meta {
  text-align: right;
  font-size: 0.88rem;
  color: rgba(255, 251, 254, 0.55);
  display: grid;
  gap: 0.35rem;
}

.footer-dev a {
  color: #f3c4ce;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s;
}

.footer-dev a:hover {
  border-bottom-color: #f3c4ce;
}

/* —— FAB WhatsApp —— */
.fab-wa {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.fab-wa:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.5);
}

/* —— Reveal —— */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  animation: rise 0.85s var(--ease) both;
}

/* —— Motion —— */
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

@keyframes breathe {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      inset 0 1px 2px rgba(255, 255, 255, 0.45),
      0 4px 14px rgba(168, 137, 106, 0.35);
  }
  50% {
    transform: scale(1.06);
    box-shadow:
      inset 0 1px 2px rgba(255, 255, 255, 0.55),
      0 6px 20px rgba(168, 137, 106, 0.5);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* —— Responsive —— */
@media (max-width: 960px) {
  .rituals-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.35rem 1.5rem;
  }

  .cat-grid,
  .team-grid,
  .quotes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .salon {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .salon-media {
    min-height: 280px;
    aspect-ratio: 16 / 10;
  }

  .visit-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-agendar--wide {
    grid-template-columns: 1fr;
  }

  .care-item {
    flex-direction: column;
    gap: 1rem;
  }

  .care-aside {
    justify-items: start;
    text-align: left;
    width: 100%;
    padding-top: 0.85rem;
    border-top: 1px solid var(--line);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1.15rem;
  }

  .care-aside strong {
    margin-right: auto;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 1.75rem, var(--max));
  }

  .cat-grid,
  .team-grid,
  .quotes-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .header-cta {
    display: none;
  }

  .nav {
    position: fixed;
    inset: 0;
    margin: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    background:
      radial-gradient(ellipse 70% 50% at 50% 20%, rgba(154, 83, 101, 0.35), transparent 55%),
      linear-gradient(165deg, #5a3342 0%, var(--wine) 100%);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s var(--ease), visibility 0.4s;
    z-index: 1;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav a {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 500;
    opacity: 1;
  }

  .nav-cta-mobile {
    display: inline-flex;
    margin-top: 0.75rem;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    background: var(--rose-hot);
    font-family: var(--font-body) !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
  }

  .site-header.is-solid .nav-toggle,
  .page-inner .nav-toggle {
    color: var(--ink);
  }

  .nav-toggle.is-open {
    color: #fff;
  }

  .hero {
    padding: 6.5rem 0 3.5rem;
    min-height: 92vh;
  }

  .hero-brand {
    font-size: clamp(2.4rem, 12vw, 3.4rem);
  }

  .rituals {
    padding: 2.25rem 0;
  }

  .section {
    padding: 3.75rem 0;
  }

  .page-hero {
    padding: 7.5rem 0 2.25rem;
  }

  .moments-track {
    padding-inline: 0.875rem;
  }

  .moment {
    flex-basis: min(78vw, 280px);
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta {
    text-align: left;
  }

  .agenda-days {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.5rem;
    padding-bottom: 0.35rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .agenda-day {
    flex: 0 0 4.25rem;
    scroll-snap-align: start;
  }

  .agenda-day.is-hidden {
    display: none !important;
  }

  .fab-wa {
    right: 1rem;
    bottom: 1rem;
  }
}

@media (max-width: 420px) {
  .wrap {
    width: min(100% - 1.35rem, var(--max));
  }

  .rituals-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .visit-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .visit-actions .btn {
    width: 100%;
  }

  .visit-facts {
    padding: 1.25rem;
  }

  .agenda-picker {
    padding: 1.15rem 1rem 1.35rem;
  }

  .agenda-day {
    flex-basis: 3.85rem;
    padding: 0.55rem 0.15rem;
  }

  .agenda-day__num {
    font-size: 1.15rem;
  }

  .agenda-slots {
    grid-template-columns: repeat(auto-fill, minmax(4.5rem, 1fr));
  }

  .care-item {
    padding: 1.15rem 1.1rem;
  }

  .logo-text strong {
    font-size: 1.05rem;
  }
}
