/* ==========================================================================
   Dra. Natália Infantino — Odontologia
   Design System v1.0 (DESIGN-FINAL.md)
   Cuiabá-MT · Clínica LUMYÈ
   ========================================================================== */

/* ============== TOKENS (DESIGN-FINAL.md) ============== */
:root {
  /* Colors */
  --clay: #bf8d89;
  --clay-hover: #a87672;
  --clay-light: #d3b0ac;
  --navy: #2b5672;
  --navy-deep: #1b213c;
  --navy-soft: #3a6485;
  --cream-light: #f4ece6;
  --cream: #e6dace;
  --taupe: #8b6755;
  --warm-near-black: #2e2c29;
  --warm-dark: #5c5752;
  --warm-grey: #8a837c;
  --white: #ffffff;
  --border: #e2e2e2;
  --border-soft: #e8e6e6;
  --text-muted: #8f8f8f;
  --whatsapp: #25d366;
  --whatsapp-hover: #1eba56;

  /* Typography */
  --font-display: "Poppins", system-ui, -apple-system, sans-serif;
  --font-body: "Lato", "Avenir Next", "Helvetica Neue", sans-serif;
  --font-meta: "Barlow", "DIN Next", "Lato", sans-serif;

  /* Sizes */
  --fs-hero: clamp(28px, 5vw, 48px);
  --fs-display: clamp(26px, 4vw, 40px);
  --fs-section: clamp(22px, 3vw, 32px);
  --fs-subheading: clamp(18px, 2.4vw, 25px);
  --fs-label: 14px;
  --fs-body: 17px;
  --fs-body-sm: 15px;
  --fs-caption: 12px;
  --fs-micro: 11px;

  /* Radius */
  --r-none: 0;
  --r-sm: 7px;
  --r-md: 10px;
  --r-lg: 24px;
  --r-xl: 40px;
  --r-full: 9999px;

  /* Spacing */
  --s-xs: 6px;
  --s-sm: 10px;
  --s-md: 16px;
  --s-lg: 24px;
  --s-xl: 40px;
  --s-2xl: 64px;
  --s-3xl: 96px;
  --s-hero: 120px;

  /* Layout */
  --container: 1140px;
  --container-narrow: 980px;
  --container-text: 720px;

  /* Shadows */
  --shadow-ambient: 0 0 4px 0 rgba(0,0,0,0.1);
  --shadow-soft: 0 2px 6px rgba(0,0,0,0.15);
  --shadow-card: 0 6px 24px rgba(27,33,60,0.08);

  /* Motion */
  --ease-atmospheric: cubic-bezier(0.3, 0.13, 0.12, 1);
  --d-fast: 200ms;
  --d-medium: 400ms;
  --d-slow: 600ms;
}

/* ============== RESET ============== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--navy-deep);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; transition: color var(--d-fast) ease; }
a:hover { color: var(--clay); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy-deep);
}

/* ============== UTILITIES ============== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--s-md); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--s-md); }
.container-text { max-width: var(--container-text); margin: 0 auto; padding: 0 var(--s-md); }
.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;
}
.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; letter-spacing: 0.05em; }

/* ============== TYPOGRAPHY ============== */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--clay);
  margin-bottom: var(--s-md);
  display: inline-block;
}
.title-hero {
  font-size: var(--fs-hero);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: var(--s-md);
}
.title-display {
  font-size: var(--fs-display);
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: var(--s-md);
}
.title-section {
  font-size: var(--fs-section);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--s-md);
}
.subheading {
  font-family: var(--font-display);
  font-size: var(--fs-subheading);
  font-weight: 600;
  margin-bottom: var(--s-sm);
}
.lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--warm-dark);
  margin-bottom: var(--s-md);
}
p { margin-bottom: var(--s-md); color: var(--warm-dark); }
p:last-child { margin-bottom: 0; }
.text-on-dark { color: rgba(255,255,255,0.92); }
.text-on-dark p { color: rgba(255,255,255,0.85); }
.text-on-dark h1, .text-on-dark h2, .text-on-dark h3, .text-on-dark .eyebrow { color: var(--white); }
.text-on-dark .eyebrow { color: rgba(255,255,255,0.85); }

/* ============== BUTTONS (PILL é o padrão real) ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 36px;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--d-fast) ease;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--clay); color: var(--white); border-color: var(--clay); }
.btn--primary:hover { background: var(--clay-hover); border-color: var(--clay-hover); color: var(--white); }

.btn--navy { background: var(--navy-deep); color: var(--white); border-color: var(--navy-deep); }
.btn--navy:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }

.btn--outline-navy { background: transparent; color: var(--navy-deep); border-color: var(--navy-deep); }
.btn--outline-navy:hover { background: var(--navy-deep); color: var(--white); }

.btn--outline-light { background: transparent; color: var(--white); border-color: var(--white); }
.btn--outline-light:hover { background: var(--white); color: var(--navy-deep); }

.btn--outline-clay { background: transparent; color: var(--clay); border-color: var(--clay); }
.btn--outline-clay:hover { background: var(--clay); color: var(--white); }

.btn--ghost { background: transparent; color: var(--navy); padding: 10px 16px; border: none; }
.btn--ghost:hover { color: var(--clay); }

.btn--lg { padding: 16px 44px; font-size: 15px; }
.btn--sm { padding: 10px 24px; font-size: 13px; }
.btn--block { width: 100%; }

.btn .icon { width: 18px; height: 18px; display: inline-block; }

/* ============== HEADER ============== */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header__topbar {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  padding: 8px 0;
}
.header__topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-md);
  flex-wrap: wrap;
}
.header__topbar a { color: rgba(255,255,255,0.9); display: inline-flex; align-items: center; gap: 6px; }
.header__topbar a:hover { color: var(--clay); }
.header__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-md) var(--s-md);
  max-width: var(--container);
  margin: 0 auto;
  gap: var(--s-md);
}
.header__logo img { width: auto; height: 80px; display: block; }
.header__nav {
  display: flex;
  align-items: center;
  gap: var(--s-xl);
}
.header__nav-list {
  display: flex;
  gap: 28px;
  align-items: center;
}
.header__nav-list a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--navy-deep);
  padding: 6px 0;
  position: relative;
}
.header__nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clay);
  transition: width var(--d-fast) ease;
}
.header__nav-list a:hover,
.header__nav-list a.active { color: var(--clay); }
.header__nav-list a.active::after,
.header__nav-list a:hover::after { width: 100%; }
.header__socials {
  display: flex;
  gap: var(--s-md);
  align-items: center;
}
.header__socials a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-deep);
}
.header__socials a:hover { color: var(--clay); }
.header__socials svg { width: 100%; height: 100%; }
.header__menu-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.header__menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--navy-deep);
  transition: all var(--d-fast) ease;
}
.header__menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.header__menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============== HERO ============== */
.hero {
  padding: var(--s-2xl) 0 var(--s-3xl);
  position: relative;
  overflow: hidden;
}
.hero--cream { background: var(--cream-light); }
.hero__decorative {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(180px, 30vw, 360px);
  color: var(--clay);
  opacity: 0.12;
  top: -30px;
  left: -40px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.08em;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-xl);
  align-items: center;
}
.hero__content { padding: var(--s-md) 0; }
.hero__lead {
  font-size: 19px;
  line-height: 1.55;
  margin-bottom: var(--s-lg);
  color: var(--warm-dark);
  max-width: 560px;
}
.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-md);
  margin-bottom: var(--s-lg);
  font-family: var(--font-meta);
  font-size: 13px;
  color: var(--warm-near-black);
}
.hero__proof span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--white);
  border-radius: var(--r-full);
  box-shadow: var(--shadow-ambient);
}
.hero__ctas {
  display: flex;
  gap: var(--s-md);
  flex-wrap: wrap;
}
.hero__visual {
  position: relative;
  min-height: 460px;
}
.hero__visual--dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-md);
  position: relative;
}
.hero__visual img {
  border-radius: var(--r-lg);
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero__visual--dual .hero__img-small {
  position: relative;
  z-index: 2;
  height: 380px;
  margin-top: 60px;
  margin-right: -40px;
}
.hero__visual--dual .hero__img-large {
  height: 440px;
  border-radius: var(--r-lg);
}

/* ============== SECTIONS ============== */
.section { padding: var(--s-3xl) 0; }
.section--sm { padding: var(--s-2xl) 0; }
.section--cream { background: var(--cream-light); }
.section--cream-warm { background: var(--cream); }
.section--navy { background: var(--navy-deep); }
.section--clay { background: var(--clay); }
.section--white { background: var(--white); }

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--s-2xl);
}
.section__head--left {
  text-align: left;
  margin-left: 0;
}

/* ============== ABOUT BLOCK ============== */
.about {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-2xl);
  align-items: center;
}
.about__visual {
  position: relative;
}
.about__visual img {
  width: 100%;
  border-radius: var(--r-lg);
  display: block;
}
.about__content h2 { margin-bottom: var(--s-md); }
.about__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-md);
  margin-bottom: var(--s-lg);
  font-family: var(--font-meta);
  font-size: 13px;
}
.about__credentials span {
  padding: 6px 14px;
  background: var(--cream-light);
  border-radius: var(--r-full);
  color: var(--navy-deep);
}

/* ============== SPECIALTIES GRID (HOME) ============== */
.specialties-intro {
  background: var(--clay);
  padding: var(--s-3xl) 0;
}
.specialties-intro__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-2xl);
  align-items: center;
}
.specialties-intro__visual img {
  border-radius: 0 var(--r-xl) var(--r-xl) 0;
  width: 100%;
  height: 460px;
  object-fit: cover;
}

/* ============== SPECIALTY CARDS (página especialidades) ============== */
.specialty {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s-2xl);
  align-items: center;
  padding: var(--s-2xl) 0;
}
.specialty--reverse { grid-template-columns: 1.2fr 1fr; }
.specialty--reverse .specialty__visual { order: 2; }
.specialty__visual img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 0 var(--r-xl) var(--r-xl) 0;
}
.specialty--reverse .specialty__visual img {
  border-radius: var(--r-xl) 0 0 var(--r-xl);
}
.specialty--on-navy { color: var(--white); }
.specialty--on-clay { color: var(--white); }
.specialty__content h2 { margin-bottom: var(--s-sm); }
.specialty__subhead {
  display: inline-block;
  font-family: var(--font-meta);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  padding: 6px 14px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--r-full);
  margin-bottom: var(--s-md);
}
.specialty--on-light .specialty__subhead { background: var(--cream-light); color: var(--clay); }
.specialty__benefits {
  margin: var(--s-md) 0 var(--s-lg);
  display: grid;
  gap: 8px;
}
.specialty__benefits li {
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}
.specialty__benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--clay);
  font-weight: 700;
}
.specialty--on-navy .specialty__benefits li::before,
.specialty--on-clay .specialty__benefits li::before { color: var(--white); }

/* ============== TIMELINE ============== */
.timeline {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  padding: var(--s-xl) 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--clay);
  transform: translateX(-50%);
  opacity: 0.6;
}
.timeline__entry {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: var(--s-md);
  align-items: center;
  margin-bottom: var(--s-xl);
  position: relative;
}
.timeline__photo {
  width: 100px;
  height: 100px;
  border-radius: var(--r-full);
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-soft);
  margin: 0 auto;
  grid-column: 2;
  z-index: 2;
}
.timeline__card {
  padding: 20px 24px;
  border-radius: var(--r-lg);
  color: var(--white);
  box-shadow: var(--shadow-card);
}
.timeline__card--navy { background: var(--navy-deep); }
.timeline__card--clay { background: var(--clay); }
.timeline__year {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 6px;
}
.timeline__card--navy .timeline__year { color: var(--clay); }
.timeline__card--clay .timeline__year { color: var(--navy-deep); }
.timeline__card p { color: rgba(255,255,255,0.92); font-size: 14px; line-height: 1.55; margin: 0; }
.timeline__entry--left .timeline__card { grid-column: 1; }
.timeline__entry--right .timeline__card { grid-column: 3; }
.timeline__entry--left .timeline__placeholder,
.timeline__entry--right .timeline__placeholder { display: block; }

/* ============== GALLERY ============== */
.gallery-collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-md);
  margin-bottom: var(--s-2xl);
}
.gallery-collage img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--r-lg);
}
.gallery-collage img:nth-child(4n+1) { aspect-ratio: 1 / 1.2; }
.gallery-collage img:nth-child(4n+3) { aspect-ratio: 1 / 0.9; }

.gallery-before-after {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-md);
}
.gallery-before-after figure {
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--cream-light);
  transition: transform var(--d-medium) var(--ease-atmospheric);
}
.gallery-before-after figure:hover { transform: translateY(-4px); }
.gallery-before-after img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ============== EBOOK BLOCK ============== */
.ebook-block {
  background: var(--cream-light);
  padding: var(--s-2xl) 0;
  text-align: center;
}
.ebook-block__inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--s-md);
}
.ebook-block__eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  color: var(--clay);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: var(--s-sm);
}
.ebook-block__title {
  font-size: clamp(22px, 3vw, 28px);
  color: var(--clay);
  margin-bottom: var(--s-md);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.ebook-block__list {
  color: var(--warm-dark);
  max-width: 600px;
  margin: 0 auto var(--s-lg);
  line-height: 1.6;
}
.ebook-block__caption {
  font-family: var(--font-meta);
  font-size: 13px;
  color: var(--warm-grey);
  margin-top: var(--s-md);
}

/* ============== WHATSAPP CTA BLOCK ============== */
.whatsapp-cta {
  background: var(--navy-deep);
  color: var(--white);
  padding: var(--s-2xl) 0;
  text-align: center;
}
.whatsapp-cta__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--r-full);
  background: var(--whatsapp);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-md);
}
.whatsapp-cta__icon svg { width: 32px; height: 32px; fill: var(--white); }
.whatsapp-cta__headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 26px);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: var(--s-md);
  color: var(--white);
}
.whatsapp-cta__phone {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: var(--s-lg);
  color: var(--white);
}
.whatsapp-cta__caption {
  font-family: var(--font-meta);
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: var(--s-md);
}

/* ============== INSTAGRAM STRIP ============== */
.instagram-strip {
  background: var(--white);
  padding: var(--s-2xl) 0;
  text-align: center;
}
.instagram-strip__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--clay);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--s-sm);
}
.instagram-strip__handle {
  font-family: var(--font-meta);
  font-size: 14px;
  color: var(--warm-dark);
  margin-bottom: var(--s-lg);
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s-md);
  max-width: var(--container);
  margin: 0 auto var(--s-lg);
  padding: 0 var(--s-md);
}
.instagram-grid a {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--r-md);
}
.instagram-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--d-medium) var(--ease-atmospheric);
}
.instagram-grid a:hover img { transform: scale(1.05); }

/* ============== FORM ============== */
.form-card {
  background: var(--navy-deep);
  color: var(--white);
  padding: var(--s-2xl) var(--s-lg);
  border-radius: var(--r-lg);
  max-width: 640px;
  margin: 0 auto;
}
.form-card__title {
  text-align: center;
  margin-bottom: var(--s-lg);
}
.form-card__caption {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-align: center;
  margin-bottom: var(--s-lg);
}
.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--s-md); }
.form-row label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clay);
}
.form-row input,
.form-row select,
.form-row textarea {
  background: transparent;
  color: var(--white);
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding: 10px 0;
  font-size: 15px;
  outline: none;
  transition: border-color var(--d-fast) ease;
  font-family: var(--font-body);
}
.form-row textarea { resize: vertical; min-height: 80px; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-bottom-color: var(--clay); }
.form-row input::placeholder,
.form-row textarea::placeholder { color: rgba(255,255,255,0.5); }
.form-row select option { color: var(--navy-deep); }
.form-radios {
  display: flex;
  gap: var(--s-md);
  flex-wrap: wrap;
  margin-top: 6px;
}
.form-radios label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255,255,255,0.92);
  cursor: pointer;
}
.form-radios input { accent-color: var(--clay); margin: 0; }
.form-submit { margin-top: var(--s-lg); text-align: center; }

/* ============== FOOTER ============== */
.footer {
  background: var(--clay);
  color: var(--navy-deep);
  padding: var(--s-2xl) 0 var(--s-lg);
  text-align: center;
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-md);
}
.footer__logo { margin-bottom: var(--s-md); }
.footer__logo img { height: 90px; width: auto; display: block; margin: 0 auto; filter: brightness(0) saturate(100%) invert(11%) sepia(15%) saturate(2674%) hue-rotate(196deg) brightness(95%) contrast(98%); }
.footer__address {
  font-family: var(--font-meta);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: var(--s-md);
  color: var(--navy-deep);
}
.footer__address strong { font-weight: 700; }
.footer__links {
  display: flex;
  gap: var(--s-lg);
  justify-content: center;
  flex-wrap: wrap;
  margin: var(--s-md) 0;
  padding-top: var(--s-md);
  border-top: 1px solid rgba(27,33,60,0.2);
}
.footer__links a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy-deep);
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  font-family: var(--font-meta);
  font-size: 11px;
  color: rgba(27,33,60,0.7);
  margin-top: var(--s-md);
  padding-top: var(--s-md);
  border-top: 1px solid rgba(27,33,60,0.15);
  line-height: 1.6;
}
.footer__co-brand {
  display: inline-block;
  margin-top: var(--s-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--navy-deep);
  opacity: 0.7;
}

/* ============== WHATSAPP FLOAT ============== */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: var(--r-full);
  background: var(--whatsapp);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  z-index: 90;
  transition: transform var(--d-medium) var(--ease-atmospheric);
  animation: pulse-whatsapp 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.08); color: var(--white); }
.whatsapp-float svg { width: 28px; height: 28px; fill: currentColor; }
@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 28px rgba(37,211,102,0.7); }
}

/* ============== PAGE INTERNA HERO ============== */
.page-hero {
  padding: var(--s-2xl) 0;
  background: var(--cream-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero__title {
  margin-bottom: var(--s-md);
  font-size: clamp(32px, 5vw, 48px);
}
.page-hero__lead {
  max-width: var(--container-text);
  margin: 0 auto;
  color: var(--warm-dark);
}

/* ============== CONTATO ============== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-2xl);
  align-items: start;
}
.contact-info h3 {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--s-md);
  color: var(--clay);
}
.contact-info p { margin-bottom: var(--s-sm); }
.contact-info__line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: var(--s-md);
}
.contact-info__line svg {
  width: 20px;
  height: 20px;
  fill: var(--clay);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info__ctas {
  display: flex;
  flex-direction: column;
  gap: var(--s-sm);
  margin-top: var(--s-lg);
  max-width: 320px;
}
.map-embed {
  width: 100%;
  height: 380px;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: var(--s-lg);
  border: 1px solid var(--border);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ============== TRUST BAR ============== */
.trust-bar {
  background: var(--cream);
  padding: var(--s-md) 0;
  text-align: center;
  font-family: var(--font-meta);
  font-size: 13px;
  color: var(--navy-deep);
}
.trust-bar__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s-lg);
}
.trust-bar__inner span { display: inline-flex; align-items: center; gap: 6px; }

/* ============== RESPONSIVE ============== */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--s-lg); }
  .hero__visual { min-height: auto; }
  .hero__visual--dual .hero__img-small { margin-top: 0; margin-right: 0; height: 280px; }
  .hero__visual--dual .hero__img-large { height: 320px; }
  .about { grid-template-columns: 1fr; gap: var(--s-lg); }
  .specialties-intro__grid { grid-template-columns: 1fr; gap: var(--s-lg); }
  .specialties-intro__visual img { height: 320px; border-radius: var(--r-xl); }
  .specialty,
  .specialty--reverse { grid-template-columns: 1fr; gap: var(--s-lg); }
  .specialty--reverse .specialty__visual { order: 0; }
  .specialty__visual img { height: 320px; border-radius: var(--r-lg); }
  .specialty--reverse .specialty__visual img { border-radius: var(--r-lg); }
  .gallery-collage { grid-template-columns: repeat(2, 1fr); }
  .gallery-before-after { grid-template-columns: repeat(2, 1fr); }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .timeline { max-width: 100%; }
  .timeline::before { left: 50px; }
  .timeline__entry { grid-template-columns: 80px 1fr; gap: var(--s-md); }
  .timeline__photo { grid-column: 1; }
  .timeline__entry--left .timeline__card,
  .timeline__entry--right .timeline__card { grid-column: 2; }
  .header__menu-toggle { display: flex; }
  .header__nav {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px var(--s-lg) var(--s-lg);
    transition: right var(--d-medium) var(--ease-atmospheric);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    z-index: 99;
    align-items: flex-start;
  }
  .header__nav.is-open { right: 0; }
  .header__nav-list { flex-direction: column; gap: var(--s-md); width: 100%; align-items: flex-start; }
  .header__socials { margin-top: var(--s-lg); }
  .header__logo img { height: 60px; }
  .header__topbar { font-size: 12px; }
  .header__topbar-inner { justify-content: center; gap: var(--s-sm); }
  .section { padding: var(--s-2xl) 0; }
  .hero { padding: var(--s-xl) 0 var(--s-2xl); }
  .hero__ctas { justify-content: center; }
  .hero__content { text-align: center; }
  .hero__proof { justify-content: center; }
  .hero__lead { margin-left: auto; margin-right: auto; }
  .btn { padding: 12px 28px; }
}

@media (max-width: 600px) {
  .gallery-collage,
  .gallery-before-after { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__decorative { font-size: 220px; opacity: 0.08; }
  .hero__proof { font-size: 12px; }
  .hero__proof span { padding: 5px 10px; }
  .footer__links { gap: var(--s-md); }
  .whatsapp-cta__phone { font-size: 28px; }
}

/* ============== NO-JS / PRINT ============== */
@media print {
  .header, .footer, .whatsapp-float, .whatsapp-cta { display: none; }
  body { color: #000; background: #fff; }
}
