/* Karina Uieti Estética — ivory · rose gold · taupe */
:root {
  --ivory: #FAF7F2;
  --ivory-warm: #F5EFE6;
  --rose-gold: #C4A484;
  --rose-gold-dark: #A88668;
  --rose-gold-light: #D4B89A;
  --taupe: #8B7355;
  --taupe-dark: #6B5B4F;
  --taupe-muted: #9A8570;
  --ink: #3D3429;
  --ink-muted: #5C5248;
  --white: #FFFFFF;
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;
  --shadow-sm: 0 2px 10px rgba(61, 52, 41, 0.07);
  --shadow-md: 0 8px 28px rgba(61, 52, 41, 0.11);
  --shadow-lg: 0 18px 48px rgba(61, 52, 41, 0.14);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --header-h: 76px;
  --mobile-bar-h: 64px;
  --transition: 0.28s ease;
}

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

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -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(--rose-gold-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

:focus-visible {
  outline: 3px solid var(--rose-gold);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
}

h1 { font-size: clamp(2rem, 6vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.35rem); margin-bottom: var(--space-sm); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.45rem); margin-bottom: 0.5rem; }

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

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: var(--ivory);
  border-bottom: 1px solid rgba(139, 115, 85, 0.14);
  height: var(--header-h);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-sm);
}

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

.logo__mark {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--rose-gold-dark) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ivory);
  letter-spacing: -0.02em;
}

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

.logo__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
}

.logo__tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--taupe);
}

.header-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .header-cta { display: flex; }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 2px solid var(--rose-gold);
  border-radius: var(--radius-sm);
  cursor: pointer;
  flex-shrink: 0;
  z-index: 310;
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  background: var(--rose-gold-dark);
  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);
}

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}

.site-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  min-height: calc(100dvh - var(--header-h));
  z-index: 250;
  background: var(--ivory);
  padding: var(--space-lg) var(--space-md) var(--space-xl);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

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

.site-nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-nav__link {
  display: block;
  padding: 1rem 1.1rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
  text-decoration: none;
  border-radius: var(--radius-sm);
  min-height: 48px;
  border-bottom: 1px solid rgba(139, 115, 85, 0.15);
}

.site-nav__link:hover,
.site-nav__link[aria-current="page"] {
  background: var(--ivory-warm);
  color: var(--rose-gold-dark);
}

@media (min-width: 1024px) {
  .site-nav {
    display: block;
    position: static;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    min-height: auto;
    width: auto;
    background: transparent;
    padding: 0;
    overflow: visible;
    flex: 1;
  }

  .site-nav__list {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.125rem;
  }

  .site-nav__link {
    padding: 0.5rem 0.6rem;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    border-bottom: none;
  }
}

body.nav-open { overflow: hidden; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  min-width: 48px;
  padding: 0.75rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

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

.btn--whatsapp:hover {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  color: var(--white);
}

.btn--primary {
  background: var(--rose-gold-dark);
  color: var(--ivory);
  border-color: var(--rose-gold-dark);
}

.btn--primary:hover {
  background: var(--taupe-dark);
  border-color: var(--taupe-dark);
  color: var(--ivory);
}

.btn--outline {
  background: transparent;
  color: var(--rose-gold-dark);
  border-color: var(--rose-gold);
}

.btn--outline:hover {
  background: var(--rose-gold-dark);
  color: var(--ivory);
}

.btn--sm {
  min-height: 40px;
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* Hero magazine */
.hero-mag {
  background: var(--ivory);
  padding-block: var(--space-lg) var(--space-xl);
  overflow: hidden;
}

.hero-mag__grid {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 900px) {
  .hero-mag__grid {
    grid-template-columns: 1fr 0.95fr;
    gap: var(--space-2xl);
  }
}

.hero-mag__kicker {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--rose-gold-dark);
  margin-bottom: var(--space-sm);
}

.hero-mag__promise {
  font-size: 1.1rem;
  color: var(--ink-muted);
  max-width: 48ch;
  margin-bottom: var(--space-lg);
}

.hero-mag__visual {
  position: relative;
}

.hero-mag__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: translateX(8px);
}

.hero-mag__frame img {
  width: 100%;
  height: clamp(320px, 50vw, 560px);
  object-fit: cover;
}

.hero-mag__accent {
  position: absolute;
  width: 72px;
  height: 72px;
  background: var(--rose-gold-light);
  opacity: 0.45;
  border-radius: var(--radius-sm);
  z-index: -1;
}

.hero-mag__accent--tl { top: -16px; left: -16px; }
.hero-mag__accent--br { bottom: -20px; right: 12px; background: var(--taupe-muted); }

@media (min-width: 900px) {
  .hero-mag__content { padding-right: var(--space-md); }
}

/* Page hero */
.page-hero {
  background: linear-gradient(180deg, var(--ivory-warm) 0%, var(--ivory) 100%);
  padding-block: var(--space-xl);
  border-bottom: 1px solid rgba(139, 115, 85, 0.12);
}

.page-hero__breadcrumb {
  font-size: 0.85rem;
  color: var(--taupe);
  margin-bottom: var(--space-sm);
}

.page-hero__breadcrumb a {
  color: var(--rose-gold-dark);
  text-decoration: none;
}

/* Trust bar */
.trust-bar {
  background: var(--rose-gold-dark);
  color: var(--ivory);
  padding-block: var(--space-lg);
}

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

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

.trust-item__value {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.trust-item__label {
  font-size: 0.85rem;
  opacity: 0.92;
}

/* Sections */
.section {
  padding-block: var(--space-xl);
}

.section--warm { background: var(--ivory-warm); }
.section--rose { background: linear-gradient(180deg, var(--ivory-warm) 0%, rgba(196, 164, 132, 0.12) 100%); }
.section--tight { padding-block: var(--space-lg); }

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-gold-dark);
  margin-bottom: var(--space-xs);
}

.section__lead {
  font-size: 1.05rem;
  color: var(--ink-muted);
  max-width: 62ch;
}

/* Cards */
.card-grid {
  display: grid;
  gap: var(--space-lg);
}

.card-grid--2 {
  grid-template-columns: 1fr;
}

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

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.card--offset:nth-child(2) { margin-top: var(--space-md); }
.card--offset:nth-child(3) { margin-top: calc(var(--space-md) * 2); }

@media (max-width: 767px) {
  .card--offset:nth-child(2),
  .card--offset:nth-child(3) { margin-top: 0; }
}

.card__img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card__body { padding: var(--space-md); }

.card__price {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--rose-gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.card__desc {
  font-size: 0.95rem;
  color: var(--ink-muted);
  margin-bottom: var(--space-sm);
}

/* Features magazine */
.features {
  display: grid;
  gap: var(--space-md);
}

.features--mag {
  grid-template-columns: 1fr;
}

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

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

.feature {
  background: var(--white);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--rose-gold-light);
}

.feature--highlight {
  background: var(--ivory-warm);
  border-left-color: var(--rose-gold-dark);
}

.feature__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--rose-gold-light);
  margin-bottom: 0.5rem;
}

.feature__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* Testimonials */
.rating-banner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--ivory-warm);
  border: 2px solid rgba(196, 164, 132, 0.35);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-lg);
}

.rating-banner__score {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--rose-gold-dark);
  line-height: 1;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  margin: 0;
}

.testimonial__stars {
  color: var(--rose-gold-dark);
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}

.testimonial__text {
  font-style: italic;
  color: var(--ink-muted);
  margin-bottom: var(--space-sm);
}

.testimonial__author {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--taupe);
  font-style: normal;
}

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

@media (min-width: 768px) {
  .gallery-mag {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }
  .gallery-mag .gallery-item:first-child {
    grid-row: span 2;
  }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.6rem 0.8rem;
  background: linear-gradient(transparent, rgba(61, 52, 41, 0.78));
  color: var(--ivory);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Location */
.location-grid {
  display: grid;
  gap: var(--space-lg);
  align-items: start;
}

@media (min-width: 900px) {
  .location-grid { grid-template-columns: 1fr 1.1fr; }
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-md) 0;
}

.hours-table th,
.hours-table td {
  padding: 0.55rem 0;
  text-align: left;
  border-bottom: 1px solid rgba(139, 115, 85, 0.15);
}

.hours-table th {
  font-weight: 600;
  padding-right: var(--space-md);
}

.map-embed,
.footer-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-embed iframe,
.footer-map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

/* Service detail */
.service-detail {
  display: grid;
  gap: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--rose-gold);
}

@media (min-width: 700px) {
  .service-detail {
    grid-template-columns: 200px 1fr;
    align-items: start;
  }
}

.service-detail__img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

/* Team */
.team-grid {
  display: grid;
  gap: var(--space-lg);
}

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

.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.team-card__photo img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.team-card__role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rose-gold-dark);
  margin-bottom: 0.5rem;
}

.team-card h3 { padding: var(--space-sm) var(--space-md) 0; }
.team-card p:last-child { padding: 0 var(--space-md) var(--space-md); color: var(--ink-muted); font-size: 0.95rem; }

/* Agende */
.agende-card {
  max-width: 520px;
  margin-inline: auto;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 2px solid var(--rose-gold-light);
}

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

/* Prose */
.prose {
  max-width: 72ch;
}

.prose p { margin-bottom: var(--space-sm); }
.prose h2 { margin-top: var(--space-lg); }
.prose ol { margin: var(--space-sm) 0 var(--space-md) 1.25rem; }
.prose li { margin-bottom: 0.35rem; }

.privacy-section {
  margin-bottom: var(--space-lg);
}

.privacy-section h2 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

.faq-item__icon {
  font-size: 1.4rem;
  color: var(--rose-gold-dark);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer {
  display: none;
  padding: 0 1.15rem 1rem;
  color: var(--ink-muted);
}

.faq-item.is-open .faq-item__answer { display: block; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--taupe-dark) 0%, var(--rose-gold-dark) 55%, var(--rose-gold) 100%);
  color: var(--ivory);
  text-align: center;
  padding-block: var(--space-xl);
}

.cta-band h2 {
  color: var(--ivory);
  margin-bottom: var(--space-sm);
}

.cta-band p {
  max-width: 48ch;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
  opacity: 0.95;
}

/* Footer */
.site-footer {
  background: var(--taupe-dark);
  color: rgba(250, 247, 242, 0.88);
  padding: var(--space-xl) 0 var(--space-lg);
}

.site-footer a {
  color: var(--ivory-warm);
  text-decoration: none;
}

.site-footer a:hover { color: var(--rose-gold-light); }

.footer-grid {
  display: grid;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ivory);
  margin-bottom: var(--space-sm);
}

.footer__nap { font-size: 0.92rem; line-height: 1.6; }

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer__list a { font-size: 0.92rem; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(250, 247, 242, 0.15);
  font-size: 0.85rem;
}

/* Mobile sticky bar */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 280;
  display: flex;
  height: var(--mobile-bar-h);
  box-shadow: 0 -4px 20px rgba(61, 52, 41, 0.15);
}

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

.mobile-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
}

.mobile-bar__btn--wa {
  background: var(--whatsapp);
  color: var(--white);
}

.mobile-bar__btn--call {
  background: var(--rose-gold-dark);
  color: var(--ivory);
}
