/* Studio Metamorfose — emerald · champagne gold · cream */
:root {
  --emerald: #0d5c4a;
  --emerald-dark: #084a3b;
  --emerald-light: #167a63;
  --gold: #c9a962;
  --gold-dark: #a88b42;
  --gold-light: #dfc98a;
  --cream: #f5ecd7;
  --cream-warm: #faf6ee;
  --cream-deep: #ebe0c8;
  --ink: #1a2e28;
  --ink-muted: #3d5248;
  --white: #ffffff;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
  --shadow-sm: 0 2px 12px rgba(13, 92, 74, 0.08);
  --shadow-md: 0 8px 28px rgba(13, 92, 74, 0.12);
  --shadow-lg: 0 20px 50px rgba(13, 92, 74, 0.16);
  --shadow-card: 0 4px 20px rgba(13, 92, 74, 0.1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --font-display: 'Zilla Slab', 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(--cream-warm);
  -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(--emerald);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover { color: var(--gold-dark); }

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

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

h1 { font-size: clamp(2rem, 5.5vw, 3.1rem); }
h2 { font-size: clamp(1.55rem, 3.5vw, 2.25rem); margin-bottom: var(--space-sm); }
h3 { font-size: clamp(1.1rem, 2.2vw, 1.4rem); margin-bottom: 0.5rem; }

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

.container--wide {
  width: min(1280px, 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); }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: var(--cream-warm);
  border-bottom: 1px solid rgba(13, 92, 74, 0.12);
  height: var(--header-h);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-sm);
  width: min(1280px, 100% - 2rem);
  margin-inline: auto;
}

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

.logo__mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(145deg, var(--emerald) 0%, var(--emerald-dark) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: -0.03em;
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-sm);
}

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

.logo__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--emerald-dark);
}

.logo__tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.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(--emerald);
  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(--emerald);
  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(--cream-warm);
  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.3rem;
  color: var(--ink);
  text-decoration: none;
  border-radius: var(--radius-sm);
  min-height: 48px;
  border-bottom: 1px solid rgba(13, 92, 74, 0.1);
}

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

@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.55rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    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), box-shadow 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--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--ink);
  border-color: var(--gold-dark);
}

.btn--gold:hover {
  background: var(--gold-dark);
  color: var(--cream-warm);
}

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

.btn--outline:hover {
  background: var(--emerald);
  color: var(--cream-warm);
}

.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 card-grid */
.hero-cards {
  padding-block: var(--space-lg) var(--space-xl);
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
}

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

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

.hero-cards__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--emerald);
  background: var(--white);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 169, 98, 0.4);
  margin-bottom: var(--space-sm);
  box-shadow: var(--shadow-sm);
}

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

.hero-cards__visual {
  position: relative;
}

.hero-cards__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--gold);
}

.hero-cards__frame img {
  width: 100%;
  height: clamp(280px, 45vw, 520px);
  object-fit: cover;
}

.hero-cards__badge {
  position: absolute;
  bottom: -12px;
  left: -12px;
  background: var(--emerald);
  color: var(--cream);
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--gold);
}

/* Inner page hero */
.hero--inner {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
  padding-block: var(--space-xl);
  border-bottom: 1px solid rgba(13, 92, 74, 0.1);
}

.hero__promise {
  font-size: 1.1rem;
  color: var(--ink-muted);
  max-width: 60ch;
}

/* Trust bar */
.trust-bar {
  background: var(--emerald);
  color: var(--cream);
  padding-block: var(--space-md);
}

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

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

.trust-item {
  text-align: center;
  padding: var(--space-sm);
}

.trust-item__value {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.1;
}

.trust-item__label {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 0.25rem;
}

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

.section--cream {
  background: var(--cream);
}

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

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

/* Service cards grid */
.service-grid {
  display: grid;
  gap: var(--space-md);
}

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

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(201, 169, 98, 0.25);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.service-card__img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

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

.service-card__body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

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

.service-card__body p {
  flex: 1;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

/* Benefits */
.benefits-grid {
  display: grid;
  gap: var(--space-md);
}

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

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

.benefit-card {
  background: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
}

.benefit-card__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

/* Rating banner */
.rating-banner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--white);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  border: 2px solid var(--gold);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

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

/* Testimonials */
.testimonials-grid {
  display: grid;
  gap: var(--space-md);
}

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

.testimonial {
  background: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--gold);
}

.testimonial__stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

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

.testimonial__author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--emerald);
}

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

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

  .gallery-preview .gallery-item--wide {
    grid-row: span 2;
  }

  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.gallery-item--wide img { aspect-ratio: auto; min-height: 100%; }

.gallery-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(transparent, rgba(13, 92, 74, 0.85));
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 600;
}

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

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

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

.hours-table th,
.hours-table td {
  padding: 0.6rem 0;
  text-align: left;
  border-bottom: 1px solid rgba(13, 92, 74, 0.1);
}

.hours-table th {
  font-weight: 600;
  color: var(--emerald);
  width: 45%;
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--gold);
}

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

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(13, 92, 74, 0.12);
  overflow: hidden;
}

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

.faq-item__icon {
  font-size: 1.4rem;
  color: var(--gold);
  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.1rem 1rem;
  color: var(--ink-muted);
}

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

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

.cta-band h2 { color: var(--cream); }

.cta-band p {
  max-width: 50ch;
  margin: 0 auto var(--space-lg);
  opacity: 0.92;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding-block: var(--space-xl) var(--space-lg);
}

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

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

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

.footer__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: var(--space-sm);
}

.footer__nap p,
.footer__list li {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  opacity: 0.88;
}

.footer__list {
  list-style: none;
}

.footer__list a {
  color: var(--cream);
  text-decoration: none;
}

.footer__list a:hover { color: var(--gold-light); }

.footer__map {
  margin-top: var(--space-sm);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.footer__map iframe { height: 160px; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(245, 236, 215, 0.15);
  font-size: 0.8rem;
  opacity: 0.7;
}

.footer__bottom a { color: var(--gold-light); text-decoration: none; }

/* Mobile bar */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  display: flex;
  height: var(--mobile-bar-h);
  box-shadow: 0 -4px 20px rgba(13, 92, 74, 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.88rem;
  text-decoration: none;
  text-align: center;
  padding: 0.5rem;
}

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

.mobile-bar__btn--tel {
  background: var(--emerald);
  color: var(--cream);
}

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

.service-detail__meta {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 0.35rem;
}

.service-detail p { color: var(--ink-muted); margin-bottom: var(--space-sm); }

/* Agende page */
.agende-options {
  display: grid;
  gap: var(--space-md);
}

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

.agende-card {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(13, 92, 74, 0.1);
}

.agende-card--featured {
  border: 2px solid var(--gold);
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

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

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

@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-card);
}

.team-card__img img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

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

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

.team-card__body p { color: var(--ink-muted); font-size: 0.92rem; }

/* Split layout */
.split {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

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

.split__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--gold);
}

/* Timeline */
.timeline {
  display: grid;
  gap: var(--space-md);
}

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

.timeline__item {
  background: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--emerald);
}

.timeline__year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.timeline__item p { color: var(--ink-muted); font-size: 0.95rem; }

.brand-ribbon {
  display: inline-block;
  background: var(--emerald);
  color: var(--cream);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: var(--space-sm);
}

/* Reviews page */
.review-card {
  background: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
}

.review-card p { color: var(--ink-muted); margin-bottom: 0.5rem; }

/* Legal */
.legal-content h2 {
  margin-top: var(--space-lg);
  font-size: 1.25rem;
}

.legal-content p,
.legal-content li {
  color: var(--ink-muted);
  margin-bottom: var(--space-sm);
}

.legal-content ul {
  padding-left: 1.25rem;
  margin-bottom: var(--space-sm);
}

/* Ordered list agende */
ol {
  padding-left: 1.25rem;
  color: var(--ink-muted);
}

ol li { margin-bottom: 0.5rem; }
