/* Web UI kit-specific styles. Brand tokens come from colors_and_type.css. */

* { box-sizing: border-box; }

body { background: var(--paper); }

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

/* ------- Buttons ------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--dur-base) var(--ease), color var(--dur-base) var(--ease),
              transform var(--dur-fast) var(--ease), box-shadow var(--dur-base) var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(.985); }
.btn--lg { min-height: 48px; padding: 14px 26px; font-size: 15px; }
.btn--sm { min-height: 36px; padding: 8px 14px; font-size: 13px; }
.btn--primary { background: var(--clay); color: var(--paper); }
.btn--primary:hover { background: var(--clay-deep); }
.btn--ghost { background: transparent; color: var(--clay); }
.btn--ghost:hover { background: var(--cream); }
.btn--outline {
  background: var(--paper); color: var(--coffee);
  border-color: var(--line-strong);
}
.btn--outline:hover { background: var(--cream); }

/* ------- Header ------- */
.web-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.78);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.web-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex; align-items: center; gap: 32px;
}
/* The brand italic name — echoes the embroidered green signature on Iracema's lab coat */
.web-header__brand {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  color: var(--sage);
  text-decoration: none;
}
.web-header__brand:hover { color: var(--sage-deep); }
.web-hero__caption .script,
.web-footer__brand .script.display {
  color: var(--sage);
}
.web-header__links {
  display: flex; gap: 28px; margin-left: auto; margin-right: 16px;
}
.web-header__links a {
  font-size: 14px;
  color: var(--coffee);
  text-decoration: none;
}
.web-header__links a:hover { color: var(--clay); }
.web-header__links a.active { color: var(--clay); }

/* ------- Hero ------- */
.web-hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 32px 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.web-hero__copy .display {
  font-size: 96px;
  line-height: 0.98;
  margin: 14px 0 24px;
}
.web-hero__copy .display em {
  font-style: italic;
  font-weight: 400;
  color: var(--coffee);
}
.web-hero__copy .lead {
  max-width: 480px;
  margin-bottom: 32px;
}
.web-hero__ctas { display: flex; gap: 12px; margin-bottom: 40px; }
.web-hero__credentials {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 32px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.web-hero__credentials li { font-size: 13px; color: var(--fg-muted); }
.web-hero__credentials li b {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 32px;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.web-hero__image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-3);
}
.web-hero__image img {
  width: 100%; height: 100%; object-fit: cover;
}
.web-hero__caption {
  position: absolute;
  left: 24px; bottom: 22px;
  background: rgba(255,255,255,.88);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 8px 14px;
}
.web-hero__caption .script {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--coffee);
  font-size: 18px;
}

/* ------- About ------- */
.web-about {
  background: var(--cream);
  padding: 96px 32px;
}
.web-about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}
.web-about__image {
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
}
.web-about__image img { width:100%; height:100%; object-fit: cover; }
.web-about__copy h2 {
  font-size: 56px; line-height: 1.04; margin: 14px 0 24px;
}
.web-about__copy h2 em { font-style: italic; color: var(--clay); font-weight: 400; }
.web-about__copy p { max-width: 520px; }
.web-about__creds {
  list-style: none; padding: 0; margin: 32px 0 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  border-top: 1px solid var(--line-strong);
  padding-top: 24px;
}
.web-about__creds .num {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 40px;
  color: var(--clay);
  line-height: 1;
  margin-bottom: 4px;
}
.web-about__creds .lbl { font-size: 13px; color: var(--coffee); }

/* ------- Sections ------- */
.web-section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.web-section__head h2 {
  font-size: 56px; line-height: 1.04; margin: 14px 0 20px;
}
.web-section__head h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--clay);
}

/* ------- Protocolos ------- */
.web-protocolos {
  max-width: var(--container);
  margin: 0 auto;
  padding: 112px 32px;
}
.web-protocolos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.protocol-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.protocol-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
.protocol-card__img {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
}
.protocol-card__body { padding: 24px 26px 22px; }
.protocol-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  color: var(--ink);
  margin: 6px 0 8px;
  line-height: 1.05;
}
.protocol-card__desc {
  font-size: 14px;
  color: var(--coffee);
  margin: 0 0 16px;
  line-height: 1.5;
}
.protocol-card__foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--line);
}
.protocol-card__price {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--coffee);
}

/* ------- Espaço ------- */
.web-espaco {
  background: var(--sand);
  padding: 112px 32px;
}
.web-espaco {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}
.web-espaco__copy h2 {
  font-size: 56px; line-height: 1.04; margin: 14px 0 24px;
}
.web-espaco__info {
  margin: 32px 0 0;
  border-top: 1px solid rgba(123,94,77,.22);
  padding-top: 24px;
  display: grid; gap: 18px;
}
.web-espaco__info div { display: grid; grid-template-columns: 120px 1fr; gap: 16px; align-items: baseline; }
.web-espaco__info dt { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--clay); font-weight: 600; }
.web-espaco__info dd { margin: 0; color: var(--coffee); font-size: 15px; line-height: 1.5; }
.web-espaco__images { display: grid; grid-template-columns: 1.1fr 1fr; gap: 16px; }
.web-espaco__images img { width:100%; height:100%; object-fit: cover; border-radius: 20px; }
.web-espaco__images .img-tall { aspect-ratio: 3/4; }
.web-espaco__images .img-short { aspect-ratio: 3/4; margin-top: 32px; }

/* ------- Depoimento ------- */
.web-depoimento {
  max-width: 800px;
  margin: 0 auto;
  padding: 128px 32px;
  text-align: center;
}
.web-depoimento__rule {
  display: flex; align-items: center; gap: 12px; justify-content: center;
  margin-bottom: 32px;
}
.web-depoimento__rule span { height: 1px; background: var(--clay); width: 80px; }
.web-depoimento__rule i { width: 5px; height: 5px; border-radius: 50%; background: var(--clay); }
.web-depoimento__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.18;
  color: var(--ink);
  margin: 0 0 24px;
}
.web-depoimento__author { display: flex; flex-direction: column; gap: 4px; align-items: center; }
.web-depoimento__author .script {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--coffee);
}

/* ------- Agendar ------- */
.web-agendar {
  background: var(--coffee);
  color: var(--paper);
  padding: 112px 32px;
}
.web-agendar {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  max-width: var(--container);
  margin: 0 auto;
  align-items: center;
}
.web-agendar h2 {
  color: var(--paper);
  font-size: 56px; line-height: 1.04; margin: 14px 0 20px;
}
.web-agendar .eyebrow { color: var(--clay-soft); }
.web-agendar p { color: rgba(255,255,255,0.78); max-width: 360px; }
.web-agendar__form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 24px;
  padding: 32px;
  display: grid; gap: 18px;
}
.web-agendar__form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.web-agendar__form label { display: grid; gap: 6px; }
.web-agendar__form label span {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--clay-soft); font-weight: 600;
}
.web-agendar__form input,
.web-agendar__form textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--paper);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
}
.web-agendar__form input:focus,
.web-agendar__form textarea:focus {
  outline: none;
  border-color: var(--clay);
  box-shadow: 0 0 0 4px rgba(193,128,90,.22);
}
.web-agendar__cta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.web-agendar__status {
  margin: 0;
  font-size: 13px;
  color: var(--clay-soft);
  min-height: 1.2em;
}
.web-agendar .btn--ghost { color: var(--clay-soft); }
.web-agendar .btn--ghost:hover { background: rgba(255,255,255,0.08); color: var(--paper); }

/* ------- Footer ------- */
.web-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  padding: 80px 32px 32px;
}
.web-footer__top, .web-footer__bottom {
  max-width: var(--container); margin: 0 auto;
}
.web-footer__top {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.web-footer__brand .script.display {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 56px;
  font-weight: 400;
  color: var(--paper);
  margin: 0 0 8px;
}
.web-footer__cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.web-footer__cols h3 {
  font-family: var(--font-body);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--clay-soft); font-weight: 600; margin: 0 0 12px;
  line-height: 1.4;
}
.web-footer__cols p { color: rgba(255,255,255,0.72); font-size: 14px; line-height: 1.6; margin: 0; }
.web-footer__cols a { color: var(--clay-soft); text-decoration: none; }
.web-footer__cols a:hover { color: var(--paper); }
.web-footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; font-size: 12px;
}
