/* Lisboa Beauty Center — clinical white + soft aqua + slate */
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Oswald:wght@400;500;600;700&display=swap');

:root {
  --color-bg: #f8fbfc;
  --color-bg-elevated: #eef4f6;
  --color-bg-card: #ffffff;
  --color-surface: #dce9ec;
  --color-aqua: #5eb8b8;
  --color-aqua-light: #8fd4d4;
  --color-aqua-deep: #3d9a9a;
  --color-slate: #2e3a47;
  --color-slate-mid: #4a5568;
  --color-slate-light: #6b7a8c;
  --color-border: rgba(46, 58, 71, 0.12);
  --color-border-strong: rgba(46, 58, 71, 0.28);
  --color-text: #2e3a47;
  --color-text-muted: #5a6775;
  --color-whatsapp: #25d366;
  --font-display: 'Oswald', system-ui, sans-serif;
  --font-body: 'Barlow', system-ui, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4.5rem;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 12px rgba(46, 58, 71, 0.06);
  --shadow-md: 0 12px 32px rgba(46, 58, 71, 0.1);
  --shadow-glow: 0 0 32px rgba(94, 184, 184, 0.18);
  --header-h: 72px;
  --mobile-bar-h: 64px;
  --max-width: 1180px;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 100%; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--mobile-bar-h);
}

@media (min-width: 768px) { body { padding-bottom: 0; } }

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

a {
  color: var(--color-aqua-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover { color: var(--color-aqua); }

:focus-visible {
  outline: 2px solid var(--color-aqua);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 var(--space-md);
}

h1 { font-size: clamp(1.875rem, 5vw, 2.875rem); }
h2 { font-size: clamp(1.5rem, 3.2vw, 2rem); }
h3 { font-size: clamp(1.0625rem, 2.2vw, 1.25rem); }

p { margin: 0 0 var(--space-md); }

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

.section { padding: var(--space-3xl) 0; }
.section--tight { padding: var(--space-2xl) 0; }
.section--aqua { background: var(--color-bg-elevated); }

.section__label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-aqua-deep);
  margin-bottom: var(--space-sm);
}

.section__lead {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 48ch;
}

/* Header — no transform on ancestors of .site-nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg-card);
  border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  min-height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  color: var(--color-text);
  flex-shrink: 0;
}

.logo:hover { color: var(--color-text); }

.logo__mark {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(145deg, var(--color-aqua-light), var(--color-aqua-deep));
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.04em;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo__name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.logo__tag {
  font-size: 0.625rem;
  color: var(--color-text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 12px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--color-text);
  position: relative;
  z-index: 160;
}

.nav-toggle__bar {
  display: block;
  height: 2px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  background: var(--color-bg-card);
  padding: calc(var(--header-h) + var(--space-xl)) var(--space-md) calc(var(--mobile-bar-h) + var(--space-xl));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  min-height: 100dvh;
}

.site-nav.is-open { display: block; }

.site-nav__list { list-style: none; margin: 0; padding: 0; }

.site-nav__link {
  display: block;
  padding: var(--space-md) 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
  min-height: 48px;
}

.site-nav__link:hover,
.site-nav__link[aria-current="page"] { color: var(--color-aqua-deep); }

.header-cta {
  display: none;
  align-items: center;
  gap: var(--space-sm);
}

@media (min-width: 992px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: block;
    position: static;
    padding: 0;
    background: transparent;
    min-height: auto;
    overflow: visible;
  }
  .site-nav__list {
    display: flex;
    gap: var(--space-xs);
    align-items: center;
    flex-wrap: wrap;
  }
  .site-nav__link {
    font-size: 0.75rem;
    padding: var(--space-xs) 0.3rem;
    border: none;
    min-height: auto;
  }
  .header-cta { display: flex; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.btn:active { opacity: 0.92; }

.btn--primary {
  background: var(--color-aqua);
  color: #fff;
  border-color: var(--color-aqua);
}

.btn--primary:hover {
  background: var(--color-aqua-deep);
  border-color: var(--color-aqua-deep);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border-strong);
}

.btn--outline:hover {
  border-color: var(--color-aqua);
  color: var(--color-aqua-deep);
}

.btn--outline-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  border-color: #fff;
}

.btn--whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
  border-color: var(--color-whatsapp);
}

.btn--whatsapp:hover {
  background: #1ebe57;
  border-color: #1ebe57;
  color: #fff;
}

.btn--sm { min-height: 40px; padding: 0.5rem 1rem; font-size: 0.75rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: var(--space-sm); justify-content: center; }

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(30, 42, 54, 0.45) 0%, rgba(30, 42, 54, 0.68) 50%, rgba(30, 42, 54, 0.88) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: var(--space-3xl) 0 var(--space-2xl);
  text-align: center;
  max-width: 52rem;
  margin-inline: auto;
  color: #fff;
}

.hero__content h1 { color: #fff; }

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: rgba(94, 184, 184, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  margin-bottom: var(--space-lg);
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
}

.hero__promise {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: var(--space-xl);
  max-width: 44ch;
  margin-inline: auto;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
}

/* Page hero */
.page-hero {
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--color-border);
  background: linear-gradient(120deg, var(--color-bg-elevated), var(--color-bg) 55%, rgba(94, 184, 184, 0.1));
}

.page-hero__breadcrumb {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.page-hero__breadcrumb a { color: var(--color-text-muted); text-decoration: none; }
.page-hero__breadcrumb a:hover { color: var(--color-aqua-deep); }

/* Trust bar */
.trust-bar {
  background: var(--color-bg-card);
  border-block: 1px solid var(--color-border);
  padding: var(--space-xl) 0;
  box-shadow: var(--shadow-sm);
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

@media (min-width: 768px) { .trust-bar__grid { grid-template-columns: repeat(4, 1fr); } }

.trust-item { text-align: center; }

.trust-item__value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-aqua-deep);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.trust-item__label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Cards */
.card-grid { display: grid; gap: var(--space-lg); }
.card-grid--2 { grid-template-columns: 1fr; }
.card-grid--3 { grid-template-columns: 1fr; }

@media (min-width: 600px) { .card-grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .card-grid--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(94, 184, 184, 0.35);
}

.card__img { aspect-ratio: 4/3; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; }

.card__body { padding: var(--space-lg); }
.card__body h3 { text-transform: none; letter-spacing: 0; font-family: var(--font-body); font-weight: 600; }

.card__price {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-aqua-deep);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-sm);
}

.card__desc { font-size: 0.9375rem; color: var(--color-text-muted); margin-bottom: var(--space-md); }

/* Features */
.features { display: grid; gap: var(--space-lg); }
.features--3 { grid-template-columns: 1fr; }

@media (min-width: 600px) { .features--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .features--3 { grid-template-columns: repeat(3, 1fr); } }

.feature {
  padding: var(--space-lg);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-aqua);
}

.feature__icon {
  font-size: 1.5rem;
  color: var(--color-aqua);
  margin-bottom: var(--space-sm);
}

.feature__title {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: var(--space-xs);
}

/* Testimonials */
.rating-banner {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-sm);
}

.rating-banner__score {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-aqua-deep);
}

.testimonial {
  margin: 0;
  padding: var(--space-lg);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.testimonial__stars { color: #f5a623; font-size: 0.875rem; margin-bottom: var(--space-sm); }
.testimonial__text { font-style: italic; color: var(--color-text-muted); margin-bottom: var(--space-md); }
.testimonial__author { font-size: 0.8125rem; font-weight: 600; color: var(--color-text); font-style: normal; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}

.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.gallery-item:hover img { transform: scale(1.05); }

.gallery-item__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--space-sm) var(--space-md);
  background: linear-gradient(transparent, rgba(30, 42, 54, 0.85));
  color: #fff;
  font-size: 0.75rem;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Location */
.location-grid { display: grid; gap: var(--space-xl); }
@media (min-width: 768px) { .location-grid { grid-template-columns: 1fr 1fr; } }

.map-embed {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/10;
  min-height: 280px;
  box-shadow: var(--shadow-sm);
}

.map-embed iframe { width: 100%; height: 100%; border: 0; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td {
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.hours-table th {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--color-aqua-deep);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* FAQ */
.faq-list { border-top: 1px solid var(--color-border); }
.faq-item { border-bottom: 1px solid var(--color-border); }

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  background: none;
  border: none;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  min-height: 48px;
}

.faq-item__question:hover { color: var(--color-aqua-deep); }

.faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: var(--color-aqua);
  transition: transform var(--transition);
}

.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer { display: none; padding: 0 0 var(--space-lg); color: var(--color-text-muted); }
.faq-item.is-open .faq-item__answer { display: block; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, rgba(94, 184, 184, 0.14) 0%, var(--color-bg-elevated) 100%);
  border-block: 1px solid var(--color-border);
  padding: var(--space-3xl) 0;
  text-align: center;
}

.cta-band h2 { margin-bottom: var(--space-sm); }
.cta-band p { color: var(--color-text-muted); max-width: 44ch; margin-inline: auto; margin-bottom: var(--space-xl); text-transform: none; letter-spacing: 0; font-family: var(--font-body); }

/* Footer */
.site-footer {
  background: var(--color-slate);
  color: rgba(255, 255, 255, 0.84);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid { display: grid; gap: var(--space-xl); margin-bottom: var(--space-2xl); }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer__title {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-aqua-light);
  margin-bottom: var(--space-md);
}

.footer__list { list-style: none; margin: 0; padding: 0; }
.footer__list li { margin-bottom: var(--space-xs); }
.footer__list a { color: rgba(255, 255, 255, 0.72); text-decoration: none; }
.footer__list a:hover { color: var(--color-aqua-light); }
.footer__nap { font-size: 0.9375rem; line-height: 1.7; }
.footer__nap a { color: var(--color-aqua-light); text-decoration: none; }
.footer__nap a:hover { color: #fff; }

.footer__bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-map { margin-top: var(--space-lg); border-radius: var(--radius-sm); overflow: hidden; }
.footer-map iframe { width: 100%; height: 180px; border: 0; }

/* Mobile sticky bar */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--color-border);
  min-height: var(--mobile-bar-h);
}

@media (min-width: 768px) { .mobile-bar { display: none; } }

.mobile-bar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  min-height: var(--mobile-bar-h);
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.mobile-bar__btn--wa { background: var(--color-whatsapp); color: #fff; }
.mobile-bar__btn--call { background: var(--color-bg-card); color: var(--color-text); }

/* Service detail & prose */
.service-detail {
  display: grid;
  gap: var(--space-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-card);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .service-detail { grid-template-columns: 200px 1fr; align-items: start; }
  .service-detail__img { border-radius: var(--radius-sm); overflow: hidden; }
}

.prose { max-width: 68ch; }
.prose h2 { margin-top: var(--space-xl); text-transform: none; letter-spacing: 0; }
.prose ul { padding-left: 1.25rem; }
.prose li { margin-bottom: var(--space-xs); }

.agende-card {
  text-align: center;
  padding: var(--space-2xl);
  border: 2px solid var(--color-aqua);
  border-radius: var(--radius-lg);
  background: var(--color-bg-card);
  box-shadow: var(--shadow-md);
  max-width: 520px;
  margin-inline: auto;
}

.agende-card__icon { font-size: 3rem; margin-bottom: var(--space-md); }

.team-grid { display: grid; gap: var(--space-lg); }
@media (min-width: 600px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }

.team-card {
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.team-card__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto var(--space-md);
  border: 3px solid var(--color-aqua-light);
}

.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__role { font-size: 0.8125rem; color: var(--color-aqua-deep); font-weight: 600; }

.privacy-section { margin-bottom: var(--space-2xl); }
.privacy-section h2 { font-size: 1.25rem; margin-top: var(--space-xl); text-transform: none; letter-spacing: 0; }

.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }
.mb-0 { margin-bottom: 0; }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
