/* Live Estética Recife — client landing · navy/magenta só em UI chrome, sem wash nas fotos */
:root {
  --magenta: #E91E8C;
  --magenta-dark: #C2185B;
  --azul: #1A237E;
  --azul-mid: #283593;
  --bg: #FFFFFF;
  --bg-soft: #F7F5F2;
  --neutro: #9E9E9E;
  --piso: #D7CCC8;
  --piso-2: #BDBDBD;
  --texto: #212121;
  --branco: #FFFFFF;
  --wa: #25D366;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  --font: "Manrope", system-ui, -apple-system, sans-serif;
  --font-ui: "Poppins", system-ui, -apple-system, sans-serif;
  --max: 1120px;
}

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

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--azul);
  color: var(--branco);
  height: 56px;
  display: flex; align-items: center;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}
.nav__logo { font-weight: 500; font-size: 1.25rem; letter-spacing: 0.02em; }
.nav__toggle {
  background: none; border: none; color: var(--branco);
  font-size: 1.5rem; cursor: pointer; line-height: 1; padding: 4px;
}
.nav__links {
  display: none; gap: 1.25rem; align-items: center;
  font-family: var(--font-ui);
  font-size: 0.875rem; font-weight: 500;
}
.nav__links a:hover { opacity: 0.85; }
.nav__cta {
  display: inline-flex; align-items: center;
  font-family: var(--font-ui);
  background: var(--magenta); color: var(--branco) !important;
  padding: 0.5rem 1rem; border-radius: 999px;
  font-weight: 600; font-size: 0.8125rem;
}
.nav__cta:hover { background: var(--magenta-dark); }
.nav__drawer {
  display: none; position: absolute; top: 56px; left: 0; right: 0;
  background: var(--azul-mid); padding: 1rem 1.25rem 1.5rem;
  flex-direction: column; gap: 1rem;
}
.nav__drawer.is-open { display: flex; }
.nav__drawer a {
  color: var(--branco); font-weight: 500; padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 1.5rem; border-radius: 999px;
  font-family: var(--font-ui); font-weight: 600; font-size: 0.9375rem;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn:active { transform: scale(0.98); }
.btn--primary { background: var(--magenta); color: var(--branco); }
.btn--primary:hover { background: var(--magenta-dark); }
.btn--secondary {
  background: transparent; color: var(--azul); border: 2px solid var(--azul);
}
.btn--secondary:hover { background: rgba(26,35,126,0.06); }
.btn--tertiary { font-size: 0.8125rem; padding: 0.65rem 1.15rem; opacity: 0.85; }
.btn--block { width: 100%; }

.hero {
  position: relative; min-height: 70vh;
  display: flex; align-items: flex-end;
  color: var(--branco); overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 52% 32%;
}
/* Scrim preto neutro 20–40% — SEM navy/magenta sobre a foto */
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.28) 40%,
    rgba(0, 0, 0, 0.42) 100%
  );
  pointer-events: none;
}
.hero__content {
  position: relative; z-index: 1;
  padding: 2rem 0 2.5rem;
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.chip {
  display: inline-flex; align-items: center;
  font-family: var(--font-ui);
  font-size: 0.75rem; font-weight: 600;
  padding: 0.35rem 0.75rem; border-radius: 999px;
}
.chip--derby {
  background: var(--piso); color: var(--texto); margin-bottom: 0.875rem;
}
.chip--glass {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--branco);
  font-size: 0.8125rem; padding: 0.45rem 0.9rem;
}
.chip--proof {
  background: var(--magenta);
  border-color: transparent;
  font-weight: 700;
}
.chip--ig:hover { background: rgba(255, 255, 255, 0.28); }
.hero__chips {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.15rem;
}

.hero h1 {
  font-family: var(--font);
  font-size: clamp(2.05rem, 6.5vw, 2.65rem);
  font-weight: 700; line-height: 1.12;
  margin-bottom: 0.65rem; max-width: 14ch;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.hero__h1-sub {
  display: block;
  font-size: 0.48em;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
  margin-top: 0.45rem;
  max-width: 28ch;
  opacity: 0.94;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.hero__sub {
  font-size: 0.9375rem; opacity: 0.95;
  margin-bottom: 1rem; max-width: 34rem;
}
.hero__actions {
  display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-start;
}
.hero__micro { font-size: 0.8125rem; opacity: 0.9; }

.section { padding: 3rem 0; }
.section--soft { background: var(--bg-soft); }
.section__label {
  font-family: var(--font-ui);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--neutro); margin-bottom: 0.5rem;
}
.section h2 {
  font-size: clamp(1.375rem, 4vw, 1.75rem);
  font-weight: 600; line-height: 1.25;
  margin-bottom: 1rem; color: var(--azul);
}
.section p { margin-bottom: 1rem; color: var(--texto); }
.section p:last-child { margin-bottom: 0; }

.photo-card {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); margin: 1.5rem 0;
}
.photo-card img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: 52% 32%;
}
.photo-card figcaption {
  font-size: 0.75rem; color: var(--neutro);
  padding: 0.625rem 0.875rem; background: var(--bg);
  border: 1px solid var(--piso-2); border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.benefits {
  margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.875rem;
}
.benefits--compact { margin-top: 1.15rem; gap: 0.7rem; }
.lede--follow {
  font-size: 0.95rem; opacity: 0.92; max-width: 44ch; margin-bottom: 0.25rem;
}
.benefits li {
  display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.9375rem;
}
.benefits__icon {
  flex-shrink: 0; width: 1.5rem; height: 1.5rem; border-radius: 50%;
  background: rgba(40, 53, 147, 0.12); color: var(--azul-mid);
  display: grid; place-items: center; font-size: 0.75rem; font-weight: 700;
  margin-top: 0.1rem;
}

.service-eyebrow {
  font-size: 0.8125rem; color: var(--neutro); font-weight: 500; margin-bottom: 1rem !important;
}
.service-chips {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem;
}
.svc {
  display: inline-flex; font-size: 0.8125rem; font-weight: 500;
  padding: 0.55rem 0.95rem; border-radius: 999px;
  background: var(--bg); border: 1px solid var(--piso);
  color: var(--azul-mid); box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.service-safe {
  background: var(--bg); border: 1px solid var(--piso);
  border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: var(--shadow); text-align: center; margin-top: 0.5rem;
}
.service-safe p { margin-bottom: 1.25rem; font-size: 0.9875rem; }

.hours-chips {
  display: grid; grid-template-columns: 1fr; gap: 0.75rem; margin: 1rem 0;
}
.hours-chip {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--bg-soft); border: 1px solid var(--piso);
  border-radius: var(--radius); padding: 0.9rem 1.1rem;
}
.hours-chip strong { color: var(--azul); font-size: 0.9375rem; }
.hours-chip span { font-weight: 500; font-size: 0.9375rem; color: var(--texto); }
.hours-note { font-size: 0.8125rem; color: var(--neutro); margin-top: 0.75rem; }

.ig-block p { max-width: 36rem; }
.ig-card {
  margin-top: 0.5rem;
  background: var(--bg);
  border: 1px solid var(--piso);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 28rem;
}
.ig-card__mark {
  width: 3rem; height: 3rem; margin: 0 auto 0.85rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #F58529, #DD2A7B 50%, #8134AF);
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.35rem; font-weight: 600;
}
.ig-card .ig-handle {
  font-size: clamp(1.75rem, 5vw, 2.15rem);
  font-weight: 700;
  color: var(--azul);
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem !important;
}
.ig-card__copy {
  font-size: 0.95rem;
  color: var(--texto);
  opacity: 0.88;
  margin: 0 auto 1.15rem !important;
  max-width: 28ch;
}
.ig-actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.5rem;
  justify-content: center;
}
.ig-block > /* .ig-handle moved into .ig-card */


.address-block {
  background: var(--bg-soft); border-radius: var(--radius);
  padding: 1.25rem; margin-bottom: 1.25rem;
}
.address-block strong {
  display: block; font-size: 1.0625rem; color: var(--azul); margin-bottom: 0.35rem;
}
.address-block p { font-size: 0.9375rem; margin-bottom: 1rem; }
.map-stack { display: flex; flex-direction: column; gap: 1.25rem; }
.map-stack .photo-card img { aspect-ratio: 16/10; object-fit: cover; }
.local-micro { margin-top: 1rem; font-size: 0.8125rem; color: var(--neutro); }

.cta-final {
  background: var(--azul); color: var(--branco);
  padding: 3rem 0; text-align: center;
}
.cta-final h2 { color: var(--branco); margin-bottom: 0.75rem; }
.cta-final p {
  color: rgba(255,255,255,0.9); margin-bottom: 1.5rem;
  max-width: 28rem; margin-inline: auto;
}

.footer {
  background: var(--azul); color: rgba(255,255,255,0.75);
  padding: 1.5rem 0 5.5rem; font-size: 0.8125rem;
  text-align: center; border-top: 1px solid rgba(255,255,255,0.1);
}
.footer__logo {
  color: var(--branco); font-weight: 500; font-size: 1rem; margin-bottom: 0.5rem;
}
.footer a { color: var(--branco); text-decoration: underline; text-underline-offset: 2px; }

.float-wa {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 200; width: 56px; height: 56px; border-radius: 50%;
  background: var(--wa); color: var(--branco);
  display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: transform 0.2s;
}
.float-wa:hover { transform: scale(1.06); }
.float-wa svg { width: 28px; height: 28px; fill: currentColor; }

@media (min-width: 640px) {
  .hours-chips { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
  .nav__toggle { display: none; }
  .nav__links { display: flex; }
  .nav__drawer { display: none !important; }
  .hero { min-height: 78vh; }
  .hero__content { padding-bottom: 3.5rem; }
  .hero h1 { font-size: 2.75rem; max-width: 13ch; }
  .hero__media img { object-position: 48% 28%; }
  .hero__actions { flex-direction: row; align-items: center; gap: 1rem; }
  .section { padding: 4.5rem 0; }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center;
  }
  .about-grid .photo-card { margin: 0; }
  .map-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .service-safe { max-width: 32rem; margin-inline: auto; }
  .btn--block { width: auto; min-width: 14rem; }
}
@media (min-width: 1024px) {
  .hero h1 { font-size: 3rem; max-width: 12ch; }
}


/* —— Gaps HTML↔CSS (classes usadas no index) —— */
.nav__brand {
  display: flex; flex-direction: column; line-height: 1.15;
  color: var(--branco); text-decoration: none;
}
.nav__tag {
  font-size: 0.65rem; font-weight: 500; opacity: 0.75; letter-spacing: 0.04em;
}
.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 0.65rem;
  opacity: 0.92;
}
.hero__proof {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 0.85rem;
}
.hero__eyebrow + .hero__proof { margin-top: 0; }
.chip--star {
  background: rgba(255,255,255,0.96); color: var(--texto);
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.chip--star::before { content: none; }
.chip--link {
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.32);
  color: var(--branco); backdrop-filter: blur(8px);
}
.chip--link:hover { background: rgba(255,255,255,0.28); }
.lede {
  font-size: 1rem; color: var(--texto); max-width: 42ch; margin-bottom: 1rem;
}
.benefits__dot {
  flex-shrink: 0; width: 8px; height: 8px; border-radius: 50%;
  background: var(--magenta); margin-top: 0.45rem;
}
.btn--outline {
  background: transparent; color: var(--azul);
  border: 2px solid var(--azul);
}
.btn--outline:hover { background: rgba(26,35,126,0.06); }
.btn--wa {
  background: var(--wa); color: #fff !important;
}
.btn--wa:hover { background: #1EBE57; color: #fff !important; }

.service-note {
  font-size: 0.9rem; color: var(--neutro); margin-bottom: 1.25rem !important; max-width: 48ch;
}
.service-grid {
  display: grid; grid-template-columns: 1fr; gap: 0.75rem; margin-bottom: 1.5rem;
  list-style: none; padding: 0;
}
.svc-card {
  background: var(--bg); border: 1px solid var(--piso);
  border-radius: var(--radius); padding: 1.1rem 1.15rem;
  display: flex; flex-direction: column; gap: 0.35rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.svc-card__title {
  font-size: 0.95rem; font-weight: 600; color: var(--azul);
}
.svc-card__desc {
  font-size: 0.85rem; color: var(--texto); line-height: 1.4; opacity: 0.85;
}
.service-cta {
  text-align: center; margin-top: 0.5rem;
}
.service-cta p { margin-bottom: 0.85rem; font-size: 0.95rem; }

.hours-grid {
  display: grid; gap: 0.75rem; margin-top: 1rem;
}
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--bg-soft); border: 1px solid var(--piso);
  border-radius: var(--radius); padding: 0.9rem 1.1rem;
}
.hours-row strong { color: var(--azul); font-size: 0.9375rem; }
.hours-row span { font-weight: 500; }

/* .ig-handle moved into .ig-card */


@media (min-width: 640px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .hours-grid { grid-template-columns: repeat(3, 1fr); }
  .hours-row { flex-direction: column; align-items: flex-start; gap: 0.35rem; }
}
@media (min-width: 768px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
}

@media print {
  .nav { position: static; }
  .float-wa, .nav__toggle, .nav__drawer { display: none !important; }
  .hero { min-height: auto; }
  .section, .cta-final { break-inside: avoid; }
}
