/* ============================================================
   MAIN CSS — "Curl Atelier / Editorial"
   Seções, componentes e páginas (abaixo do fold)
   ============================================================ */

/* ---------- Seção ---------- */
.section { padding-block: var(--section-y); position: relative; }
.section--nude { background: var(--sand); }
.section--cafe {
  background: var(--espresso);
  color: rgba(244, 236, 225, 0.86);
}
.section--cafe h2, .section--cafe h3 { color: var(--cream); }
.section--cafe .eyebrow { color: var(--blush); }

/* Cabeçalho de seção */
.section__head {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: clamp(2.8rem, 6vw, 4.5rem);
  max-width: 64ch;
}
.section__head h2 { font-size: var(--fs-h2); font-weight: 300; }
.section__head p { color: var(--coffee); font-size: 1.08rem; }
.section--cafe .section__head p { color: rgba(244,236,225,0.74); }
.section__head--center { align-items: center; text-align: center; margin-inline: auto; }
.section__head--center p { margin-inline: auto; }

/* Linha-curl decorativa sob títulos centrais */
.section__head--center .eyebrow { justify-content: center; }

/* Divisor curvo editorial */
.curl-rule {
  display: block;
  width: 90px;
  height: auto;
  margin: 1.4rem auto 0;
  color: var(--terra);
}
.section--cafe .curl-rule { color: var(--blush); }

/* ---------- Nav mobile (menu simples com leve transparência) ---------- */
.nav-mobile {
  position: fixed; inset: 0; z-index: 1050;
  height: 100dvh; /* acompanha a barra de endereço mobile (evita corte ao abrir no topo) */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(39, 25, 19, 0.72);
  backdrop-filter: blur(20px) saturate(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
  display: flex; flex-direction: column;
  padding: 6rem clamp(1.4rem, 6vw, 2.6rem) 2.4rem;
  padding-bottom: calc(2.4rem + env(safe-area-inset-bottom));
  opacity: 0; visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s var(--ease);
}
.nav-mobile.open { opacity: 1; visibility: visible; transform: translateY(0); }
/* margin auto centraliza e permite rolagem quando o conteúdo é mais alto que a tela */
.nav-mobile__inner { width: 100%; max-width: 460px; margin: auto; }
.nav-mobile__list { list-style: none; }
.nav-mobile__list li { border-bottom: 1px solid rgba(244, 236, 225, 0.16); }
.nav-mobile__list li:first-child { border-top: 1px solid rgba(244, 236, 225, 0.16); }
.nav-mobile__list a {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--display);
  font-size: clamp(1.5rem, 7vw, 2rem);
  font-weight: 300;
  color: var(--cream);
  padding: 1.05rem 0.2rem;
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.nav-mobile__list a svg { width: 20px; height: 20px; color: var(--blush); opacity: 0; transform: translateX(-6px); transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); }
.nav-mobile__list a:hover, .nav-mobile__list a:focus-visible { color: var(--blush); padding-left: 0.7rem; }
.nav-mobile__list a:hover svg, .nav-mobile__list a:focus-visible svg { opacity: 1; transform: none; }
.nav-mobile__cta { margin-top: 2rem; width: 100%; justify-content: center; }
.nav-mobile__cta::after { background: var(--terra); }
.nav-mobile__cta:hover::after { background: var(--terra-deep); }
.nav-mobile__logo { height: 52px; width: auto; margin: 2.6rem auto 0; opacity: 0.8; }
@media (min-width: 960px) { .nav-mobile { display: none; } }

/* ---------- Footer logo ---------- */
.footer__logo { height: 40px; width: auto; }

/* ---------- Sobre ---------- */
.sobre__grid { display: grid; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.sobre__media { position: relative; }
.sobre__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 220px 220px var(--radius) var(--radius);
  box-shadow: var(--shadow-md);
}
.sobre__badge {
  position: absolute;
  bottom: 1.3rem; left: 1.3rem;
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(251, 247, 240, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 0.7rem 1.1rem 0.7rem 0.9rem;
  box-shadow: var(--shadow-md);
}
.sobre__badge strong {
  font-family: var(--display);
  font-size: 2.3rem; font-weight: 500; line-height: 1; color: var(--terra);
}
.sobre__badge span {
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--coffee); text-align: left; line-height: 1.3;
}
.sobre__text .eyebrow { margin-bottom: 1.2rem; }
.sobre__text h2 { font-size: var(--fs-h2); font-weight: 300; margin-bottom: 1.4rem; }
.sobre__text p { margin-bottom: 1.1rem; color: var(--coffee); }
.sobre__list { list-style: none; display: grid; gap: 0.9rem; margin-top: 1.6rem; }
.sobre__list li { display: flex; gap: 0.8rem; align-items: flex-start; }
.sobre__list svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--terra); margin-top: 3px; }
@media (min-width: 880px) { .sobre__grid { grid-template-columns: 0.8fr 1fr; } }

/* ---------- Sobre: bloco de diferenciais (texto + foto) ---------- */
.destaque { display: grid; gap: clamp(2.5rem, 6vw, 4.5rem); align-items: center; }
.destaque__text .eyebrow { margin-bottom: 1.1rem; }
.destaque__text h2 { font-size: var(--fs-h2); font-weight: 300; margin-bottom: 1rem; }
.destaque__text > p { color: var(--coffee); margin-bottom: 1.9rem; max-width: 48ch; }
.destaque__list { list-style: none; display: grid; gap: 1.4rem; }
.destaque__list li { display: flex; gap: 1rem; align-items: flex-start; }
.destaque__ic {
  width: 48px; height: 48px; flex-shrink: 0; display: grid; place-items: center;
  color: var(--terra-deep); background: var(--paper); border-radius: 50%; box-shadow: var(--shadow-sm);
}
.destaque__ic svg { width: 24px; height: 24px; }
.destaque__list h3 { font-size: 1.2rem; font-weight: 500; margin-bottom: 0.25rem; }
.destaque__list p { font-size: 0.96rem; color: var(--coffee); }
.destaque__media { margin: 0; }
.destaque__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
@media (min-width: 880px) { .destaque { grid-template-columns: 1fr 0.9fr; } }

/* ---------- Serviços (numerais editoriais via counter) ---------- */
.servicos__grid {
  counter-reset: serv;
  display: grid;
  gap: clamp(1rem, 2vw, 1.4rem);
  grid-template-columns: 1fr;
}
.servico-card {
  counter-increment: serv;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: clamp(2rem, 4vw, 2.6rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: background 0.5s var(--ease), color 0.5s var(--ease), transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.servico-card::before {
  content: counter(serv, decimal-leading-zero);
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--terra);
  transition: color 0.5s var(--ease);
}
.servico-card__icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  color: var(--terra-deep);
  background: var(--sand);
  border-radius: 50%;
  transition: color 0.5s var(--ease), background 0.5s var(--ease);
}
.servico-card__icon svg { width: 26px; height: 26px; }
.servico-card h3 { font-size: var(--fs-h3); font-weight: 400; }
.servico-card p { color: var(--coffee); font-size: 1rem; flex-grow: 1; transition: color 0.5s var(--ease); }
.servico-card__link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--espresso);
  transition: color 0.5s var(--ease);
}
.servico-card__link svg { width: 17px; height: 17px; transition: transform 0.4s var(--ease); }
.servico-card:hover { background: var(--espresso); color: var(--cream); transform: translateY(-6px); box-shadow: var(--shadow-md); }
.servico-card:hover h3 { color: var(--cream); }
.servico-card:hover p { color: rgba(244,236,225,0.78); }
.servico-card:hover .servico-card__link { color: var(--blush); }
.servico-card:hover .servico-card__icon { color: var(--espresso); background: var(--blush); }
.servico-card:hover .servico-card__link svg { transform: translateX(5px); }
@media (min-width: 700px) { .servicos__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .servicos__grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Galeria ---------- */
.galeria__grid { display: grid; gap: 0.8rem; grid-template-columns: repeat(2, 1fr); }
.galeria__item {
  position: relative; overflow: hidden; aspect-ratio: 3 / 4; background: var(--sand);
  border-radius: var(--radius-sm);
}
.galeria__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); filter: saturate(0.95); }
.galeria__item:hover img { transform: scale(1.06); }
.galeria__item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2rem 1.1rem 1rem;
  font-size: 0.8rem; letter-spacing: 0.04em; color: var(--cream);
  background: linear-gradient(transparent, rgba(39,25,19,0.75));
}
.galeria__empty {
  grid-column: 1 / -1; text-align: center; padding: 4rem 1.5rem;
  color: var(--coffee); background: var(--paper);
  border-radius: var(--radius);
  font-family: var(--display); font-style: italic; font-size: 1.3rem;
}
@media (min-width: 820px) { .galeria__grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Depoimentos ---------- */
.depo { overflow: hidden; position: relative; }
.depo__track { display: flex; transition: transform 0.7s var(--ease); }
.depo__slide { min-width: 100%; padding: 0 0.5rem; }
.depo__card { text-align: center; max-width: 860px; margin-inline: auto; }
.depo__stars { display: flex; justify-content: center; gap: 5px; margin-bottom: 1.8rem; color: var(--clay); }
.depo__stars svg { width: 20px; height: 20px; }
.depo__quote {
  font-family: var(--display);
  font-size: clamp(1.6rem, 4.5vw, 2.8rem);
  font-weight: 300; font-style: italic; line-height: 1.28;
  color: var(--cream); margin-bottom: 1.8rem;
  text-wrap: balance;
}
.depo__name {
  font-family: var(--body); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--blush);
}
.depo__nav { display: flex; justify-content: center; gap: 0.7rem; margin-top: 2.6rem; }
.depo__dot {
  width: 32px; height: 2px; background: rgba(244,236,225,0.25);
  transition: background 0.4s var(--ease);
}
.depo__dot.active { background: var(--blush); }

/* ---------- Diferenciais ---------- */
.dif__grid { display: grid; gap: clamp(0.9rem, 2vw, 1.2rem); grid-template-columns: 1fr; }
.dif-item {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: clamp(1.6rem, 3vw, 2.1rem);
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease);
}
.dif-item:hover { transform: translateY(-4px); }
.dif-item__icon {
  width: 46px; height: 46px; flex-shrink: 0; display: grid; place-items: center;
  color: var(--terra-deep); background: var(--sand); border-radius: 50%;
}
.dif-item__icon svg { width: 24px; height: 24px; }
.dif-item h3 { font-size: 1.25rem; font-weight: 400; margin-bottom: 0.35rem; }
.dif-item p { font-size: 0.96rem; color: var(--coffee); }
@media (min-width: 650px) { .dif__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .dif__grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Salão Parceiro ---------- */
.parceiro__card {
  display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.parceiro__media { position: relative; }
.parceiro__media img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top;
  border-radius: var(--radius); box-shadow: var(--shadow-md);
}
.parceiro__media-ig {
  position: absolute; left: 50%; bottom: -0.9rem; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 0.5rem; white-space: nowrap;
  background: rgba(251, 247, 240, 0.94);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-pill); padding: 0.55rem 1.1rem;
  box-shadow: var(--shadow-sm);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--terra-deep); transition: color 0.35s var(--ease);
}
.parceiro__media-ig:hover { color: var(--terra); }
.parceiro__media-ig svg { width: 18px; height: 18px; }
.parceiro__text .eyebrow { margin-bottom: 1rem; }
.parceiro__text h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 300; margin-bottom: 1rem; }
.parceiro__text p { color: var(--coffee); margin-bottom: 1.4rem; }
.parceiro__info { list-style: none; display: grid; gap: 0.85rem; margin-bottom: 1.8rem; }
.parceiro__info li { display: flex; gap: 0.75rem; align-items: flex-start; color: var(--coffee); font-size: 0.98rem; }
.parceiro__info svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--terra); margin-top: 2px; }
.parceiro__info a { transition: color 0.35s var(--ease); }
.parceiro__info a:hover { color: var(--terra-deep); }
.parceiro__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
@media (min-width: 820px) {
  .parceiro__card { grid-template-columns: 320px 1fr; padding: clamp(2rem, 4vw, 3rem); }
  .parceiro__media img { aspect-ratio: 1 / 1; }
}

/* ---------- Feed Instagram ---------- */

/* Fundo contínuo com seção acima (diferenciais = --sand) */
#instagram { background: var(--sand); }

/* Header: bio (esq) + perfil (dir) */
.insta__header {
  display: flex;
  align-items: stretch;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(2rem, 3.5vw, 2.8rem) clamp(2rem, 4vw, 3.2rem);
  margin-bottom: clamp(2rem, 4vw, 2.8rem);
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.insta__bio { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.insta__logo {
  display: block;
  width: min(550px, 100%);
  height: auto;
  margin-bottom: 1.4rem;
}
.insta__desc {
  color: var(--coffee);
  font-size: clamp(1.05rem, 1.8vw, 1.18rem);
  line-height: 1.72;
  max-width: 48ch;
}
/* Coluna direita: estica para a mesma altura da bio */
.insta__profile { flex-shrink: 0; display: flex; align-items: stretch; }
.insta__avatar {
  position: relative;
  width: clamp(160px, 16vw, 220px);
  border-radius: var(--radius);
  overflow: visible; /* etiqueta pode vazar abaixo */
}
.insta__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
/* Etiqueta @handle sobreposta na base da foto */
.insta__handle {
  position: absolute;
  left: 50%;
  bottom: -0.9rem;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  background: rgba(251, 247, 240, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1rem;
  box-shadow: var(--shadow-sm);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terra-deep);
  text-decoration: none;
  transition: color 0.3s var(--ease);
  z-index: 2;
}
.insta__handle:hover { color: var(--terra); }
.insta__handle svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Grid 3×3 */
.insta__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 2.4rem; /* compensa a etiqueta que desce abaixo do avatar */
}
.insta__item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: block;
  background: var(--paper);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.insta__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.insta__item:hover img { transform: scale(1.08); }

/* Overlay de hover */
.insta__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(39, 25, 19, 0.52);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  color: var(--cream);
  z-index: 2;
}
.insta__overlay svg { width: 28px; height: 28px; }
.insta__item:hover .insta__overlay { opacity: 1; }

/* Marca d'água */
.insta__item::after {
  content: '';
  position: absolute;
  bottom: 9px;
  right: 9px;
  width: 22px;
  height: 24px;
  background: url('/assets/img/logo/icon-white.svg') center / contain no-repeat;
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
}

.insta__foot { text-align: center; margin-top: 2.4rem; }

/* Mobile: 1 coluna, 6 fotos (esconde 7–9) */
@media (max-width: 599px) {
  /* Ordem: logo > foto > descrição */
  .insta__header { flex-direction: column; gap: 1.6rem; align-items: stretch; }
  .insta__bio { display: contents; }
  .insta__logo { order: 1; margin-bottom: 0; }
  .insta__profile { order: 2; width: 100%; margin-bottom: 0.6rem; }
  .insta__avatar { width: 100%; }
  .insta__avatar img { height: auto; }
  .insta__desc { order: 3; max-width: none; }

  .insta__grid { grid-template-columns: 1fr; gap: 10px; }
  .insta__item:nth-child(n+7) { display: none; }
}

/* ---------- Parceiro ---------- */
#parceiro { background: #261813; }
@media (min-width: 960px) {
  #parceiro { padding-block: calc(var(--section-y) + 40px); }
}

/* ---------- FAQ ---------- */
.faq__list { max-width: 860px; margin-inline: auto; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  text-align: left; padding: 1.7rem 0.2rem;
  font-family: var(--display); font-size: clamp(1.2rem, 2.6vw, 1.55rem); font-weight: 400;
  color: var(--espresso);
}
.faq-item__q svg { width: 24px; height: 24px; flex-shrink: 0; color: var(--terra); transition: transform 0.45s var(--ease); }
.faq-item.open .faq-item__q svg { transform: rotate(135deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-item__a p { padding: 0 0.2rem 1.7rem; color: var(--coffee); max-width: 64ch; }

/* ---------- CTA Final ---------- */
.cta-final {
  position: relative; overflow: hidden;
  text-align: center;
  background: var(--espresso);
  background-size: cover; background-position: center;
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(3.5rem, 9vw, 7rem) clamp(1.5rem, 5vw, 4rem);
}
.cta-final .eyebrow { color: var(--blush); justify-content: center; margin-bottom: 1.4rem; }
.cta-final h2 { font-size: var(--fs-h2); font-weight: 300; color: var(--cream); margin-bottom: 1.2rem; text-wrap: balance; }
.cta-final p { max-width: 48ch; margin: 0 auto 2.4rem; color: rgba(244,236,225,0.85); }
.cta-final__btns { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }
.cta-final .btn--ghost { border-color: rgba(244,236,225,0.55); color: var(--cream); }
.cta-final .btn--ghost::after { background: var(--cream); }
.cta-final .btn--ghost:hover { color: var(--espresso); }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 60px; height: 60px; display: grid; place-items: center;
  background: var(--terra); color: var(--cream);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(176,92,68,0.45);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.wa-float:hover { transform: translateY(-4px) scale(1.05); background: var(--terra-deep); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--espresso); color: rgba(244,236,225,0.66); padding-block: clamp(3.5rem, 8vw, 5.5rem) 2rem; }
.footer__grid { display: grid; gap: 2.8rem; grid-template-columns: 1fr; margin-bottom: 3rem; }
.footer__brand .brand { color: var(--cream); font-size: 1.9rem; }
.footer__brand .brand em { color: var(--terra); }
.footer__brand p { margin-top: 1.1rem; max-width: 36ch; font-size: 0.96rem; line-height: 1.7; }
.footer__col h4 { font-family: var(--body); font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blush); margin-bottom: 1.3rem; }
.footer__col ul { list-style: none; display: grid; gap: 0.7rem; }
.footer__col a { font-size: 0.96rem; transition: color 0.35s var(--ease); }
.footer__col a:hover { color: var(--cream); }
.footer__social { display: flex; gap: 0.7rem; margin-top: 1.3rem; }
.footer__social a {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid rgba(244,236,225,0.22); border-radius: 50%;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.footer__social a:hover { background: var(--terra); color: var(--cream); border-color: var(--terra); }
.footer__social svg { width: 19px; height: 19px; }
.footer__bottom {
  border-top: 1px solid rgba(244,236,225,0.14); padding-top: 1.8rem;
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between;
  font-size: 0.78rem; letter-spacing: 0.04em; color: rgba(244,236,225,0.45);
}
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; } }

/* ---------- Breadcrumbs (integrados ao topo da seção inicial) ---------- */
.breadcrumbs { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coffee); margin-bottom: 1.8rem; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center; }
.breadcrumbs a:hover { color: var(--terra-deep); }
.breadcrumbs svg { width: 13px; height: 13px; opacity: 0.5; }
.page-hero .breadcrumbs { justify-content: center; }
.page-hero .breadcrumbs ol { justify-content: center; }

/* ---------- Page hero (internas) ---------- */
.page-hero {
  padding-top: 8rem; padding-bottom: var(--section-y); text-align: center;
  background: var(--sand); position: relative; overflow: hidden;
}
.page-hero .eyebrow { justify-content: center; margin-bottom: 1.2rem; }
.page-hero h1 { font-size: clamp(2.6rem, 8vw, 5rem); font-weight: 300; margin-bottom: 1rem; }
.page-hero p { max-width: 56ch; margin-inline: auto; color: var(--coffee); font-size: 1.1rem; }

/* ---------- Formulário ---------- */
.form-grid { display: grid; gap: 1.3rem; max-width: 640px; }
.form-field { display: grid; gap: 0.45rem; }
.form-field label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--coffee); }
.form-field input, .form-field textarea {
  font-family: var(--body); font-size: 1rem; padding: 0.95rem 0;
  border: none; border-bottom: 1px solid var(--line); background: transparent; color: var(--ink);
  transition: border-color 0.4s var(--ease);
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--terra); }
.form-alert { padding: 1.1rem 1.3rem; margin-bottom: 1.8rem; font-size: 0.95rem; border-left: 3px solid; border-radius: var(--radius-sm); }
.form-alert--ok { background: rgba(150,170,120,0.14); border-color: #6B7B45; color: #4A5530; }
.form-alert--err { background: rgba(176,92,68,0.12); border-color: var(--terra); color: var(--terra-deep); }

/* ---------- Blog ---------- */
.blog__grid { display: grid; gap: clamp(1.8rem, 4vw, 2.5rem); grid-template-columns: 1fr; }
.post-card {
  background: var(--paper); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.post-card > a { display: flex; flex-direction: column; height: 100%; }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.post-card__media { overflow: hidden; }
.post-card__media img { aspect-ratio: 16 / 11; object-fit: cover; width: 100%; transition: transform 0.7s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__body { padding: 1.8rem; display: flex; flex-direction: column; flex-grow: 1; }
.post-card__meta { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; align-items: center; }
.post-card__cat { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terra-deep); font-weight: 600; }
.post-card__date { font-size: 0.72rem; letter-spacing: 0.04em; color: var(--clay); }
.post-card h3 { font-size: 1.5rem; font-weight: 400; margin-block: 0.6rem 0.5rem; }
.post-card p { font-size: 0.96rem; color: var(--coffee); flex-grow: 1; }
.post-card__cta {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.2rem;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--espresso);
}
.post-card__cta svg { width: 17px; height: 17px; transition: transform 0.4s var(--ease); }
.post-card:hover .post-card__cta { color: var(--terra-deep); }
.post-card:hover .post-card__cta svg { transform: translateX(5px); }
@media (min-width: 700px) { .blog__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .blog__grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Página interna do blog (post) ---------- */
.post-hero {
  position: relative; overflow: hidden; text-align: center;
  color: var(--ink);
  background-image:
    linear-gradient(rgba(251, 247, 240, 0.72), rgba(234, 219, 201, 0.86)),
    url('/assets/img/fabiana/atendimento.webp');
  background-size: cover; background-position: center;
  padding: 9rem 0 clamp(3rem, 7vw, 5rem);
}
.post-hero .container { max-width: 880px; position: relative; z-index: 1; }
.post-hero .breadcrumbs { color: var(--coffee); justify-content: center; margin-bottom: 1.4rem; }
.post-hero .breadcrumbs ol { justify-content: center; }
.post-hero .eyebrow { color: var(--terra-deep); justify-content: center; margin-bottom: 1.1rem; }
.post-hero h1 { font-size: clamp(2.1rem, 5.5vw, 3.6rem); font-weight: 300; color: var(--espresso); margin-bottom: 1.1rem; text-wrap: balance; }
.post-hero__sub { max-width: 60ch; margin: 0 auto 1.6rem; color: var(--coffee); font-size: 1.1rem; }
.post-hero__meta { display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem; justify-content: center; font-size: 0.78rem; letter-spacing: 0.06em; color: var(--coffee); }
.post-hero__meta span { display: inline-flex; align-items: center; gap: 0.5rem; }
.post-hero__meta svg { width: 16px; height: 16px; color: var(--terra); }
@media (max-width: 700px) {
  .post-hero {
    background-image:
      linear-gradient(rgba(251, 247, 240, 0.7), rgba(234, 219, 201, 0.88)),
      url('/assets/img/fabiana/atendimento-mobile.webp');
  }
}

.post-layout { display: grid; gap: clamp(2.5rem, 5vw, 4rem); align-items: start; }
@media (min-width: 960px) { .post-layout { grid-template-columns: minmax(0, 1fr) 340px; } }

.post-body { font-size: 1.1rem; line-height: 1.85; color: var(--coffee); }
.post-body > * + * { margin-top: 1.3rem; }
.post-body h2 { font-family: var(--display); font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 400; color: var(--espresso); margin-top: 2.6rem; line-height: 1.15; }
.post-body ul { padding-left: 1.3rem; display: grid; gap: 0.55rem; }
.post-body li { list-style: disc; }
.post-body strong { color: var(--ink); font-weight: 600; }
.post-body a { color: var(--terra-deep); text-decoration: underline; text-underline-offset: 3px; }

.post-cta {
  background: var(--espresso); color: var(--cream);
  border-radius: var(--radius-lg); padding: clamp(2rem, 4vw, 2.6rem);
  display: flex; flex-direction: column; gap: 1rem;
}
@media (min-width: 960px) { .post-cta { position: sticky; top: 6rem; } }
.post-cta .eyebrow { color: var(--blush); }
.post-cta h2 { font-size: 1.55rem; font-weight: 300; color: var(--cream); line-height: 1.18; }
.post-cta p { color: rgba(244, 236, 225, 0.82); font-size: 0.98rem; }
.post-cta .btn { justify-content: center; width: 100%; white-space: nowrap; padding-inline: 1rem; }
.post-cta .btn--ghost { border-color: rgba(244, 236, 225, 0.5); color: var(--cream); }
.post-cta .btn--ghost::after { background: var(--cream); }
.post-cta .btn--ghost:hover { color: var(--espresso); }
.post-cta__foot { display: flex; gap: 0.5rem; align-items: center; justify-content: center; margin-top: 0.4rem; padding-top: 1.1rem; border-top: 1px solid rgba(244, 236, 225, 0.16); font-size: 0.72rem; letter-spacing: 0.02em; color: rgba(244, 236, 225, 0.72); white-space: nowrap; }
.post-cta__foot svg { width: 15px; height: 15px; color: var(--blush); flex-shrink: 0; }
.post-cta__foot a { transition: color 0.3s var(--ease); }
.post-cta__foot a:hover { color: var(--cream); }

/* ---------- Ondas de transição entre seções ---------- */
.section-wave {
  position: absolute; left: 0; width: 100%;
  line-height: 0; z-index: 0; pointer-events: none;
  color: var(--espresso);
}
.section-wave svg { display: block; width: 100%; height: clamp(34px, 5vw, 68px); fill: currentColor; }
.section-wave--top { top: 0; transform: translateY(-98%); }
.section-wave--bottom { bottom: 0; transform: translateY(98%) scaleY(-1); }

/* ---------- Página de serviço: foto com etiqueta + descrição lado a lado ---------- */
.servico-detalhe { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.servico-detalhe__media { position: relative; margin: 0; }
.servico-detalhe__media img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 18%;
  border-radius: 220px 220px var(--radius) var(--radius);
  box-shadow: var(--shadow-md);
}
.servico-detalhe__tag {
  position: absolute; left: 1.1rem; bottom: 1.1rem;
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: rgba(251, 247, 240, 0.94);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-pill); padding: 0.7rem 1.2rem;
  box-shadow: var(--shadow-md);
  font-family: var(--body); font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--terra-deep);
}
.servico-detalhe__tag svg { width: 18px; height: 18px; flex-shrink: 0; }
.servico-detalhe__text .eyebrow { margin-bottom: 1.1rem; }
.servico-detalhe__text h2 { font-size: var(--fs-h2); font-weight: 300; margin-bottom: 1.4rem; }
.servico-detalhe__body { font-size: 1.08rem; line-height: 1.85; color: var(--coffee); margin-bottom: 1.9rem; }
@media (min-width: 880px) { .servico-detalhe { grid-template-columns: 0.85fr 1fr; } }

/* ---------- Cachos decorativos nos cantos ---------- */
.section { isolation: isolate; overflow-x: clip; }
.section > .container { position: relative; z-index: 1; }
.curl-corner {
  position: absolute;
  z-index: 0;
  width: clamp(130px, 17vw, 280px);
  height: auto;
  color: var(--clay);
  opacity: 0.16;
  pointer-events: none;
}
.section--cafe .curl-corner { color: var(--blush); opacity: 0.12; }
.curl-corner path { fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; }
.curl-corner--tl { top: -8px; left: -40px; }
.curl-corner--tr { top: -8px; right: -40px; transform: scaleX(-1); }
.curl-corner--br { bottom: -10px; right: -40px; transform: rotate(180deg); }
.curl-corner--bl { bottom: -10px; left: -40px; transform: rotate(180deg) scaleX(-1); }
@media (max-width: 640px) { .curl-corner { opacity: 0.1; width: 120px; } }

/* ---------- Divisória sutil entre seções ---------- */
.divider {
  display: flex; align-items: center; justify-content: center; gap: 1.2rem;
  padding-block: clamp(0.5rem, 2vw, 1.2rem);
}
.divider::before, .divider::after {
  content: ''; height: 1px; width: min(140px, 22vw);
  background: linear-gradient(to var(--dir, right), transparent, var(--line));
}
.divider::after { --dir: left; }
.divider svg { width: 30px; height: auto; color: var(--clay); flex-shrink: 0; }

/* ---------- Tipos de cabelo (seção divertida) ---------- */
.tipos__grid { display: grid; gap: clamp(1rem, 2vw, 1.4rem); grid-template-columns: 1fr; }
.tipo-card {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: clamp(1.9rem, 3vw, 2.6rem);
  text-align: center;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.tipo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.tipo-card__curl {
  width: 48px; height: 86px; margin: 0 auto 1.3rem;
  color: var(--terra);
}
.tipo-card__curl path { fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.tipo-card__code {
  font-family: var(--body); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--clay);
}
.tipo-card h3 { font-size: 1.7rem; font-weight: 400; margin: 0.4rem 0 0.7rem; }
.tipo-card p { font-size: 0.96rem; color: var(--coffee); }
@media (min-width: 760px) { .tipos__grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Nuvem de tags (SEO) ---------- */
.tagcloud {
  display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center;
  max-width: 940px; margin: clamp(2.5rem, 5vw, 4rem) auto 0;
}
.tag {
  display: inline-flex; align-items: center;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-pill);
  font-size: 0.92rem; font-weight: 400; letter-spacing: 0.01em;
  color: var(--coffee); background: var(--paper);
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.tag:hover { transform: translateY(-3px); background: var(--espresso); color: var(--cream); border-color: var(--espresso); }
.tag--lg { font-size: 1.12rem; font-weight: 500; }
.tag--sm { font-size: 0.82rem; }
.tag--accent { background: var(--terra); color: var(--cream); border-color: var(--terra); }
.tag--accent:hover { background: var(--terra-deep); border-color: var(--terra-deep); }
.tag--ghost { background: transparent; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
