:root {
  --white:#ffffff;
  --porcelain:#f4f2ec;
  --beige-light:#f3ede2;
  --beige:#ebe3d3;
  --beige-deep:#e2d7c2;
  --ink:#15140f;
  --ink-soft:#26241c;
  --slate:#5b584e;
  --brass:#a97f38;
  --brass-light:#d9bc84;
  --brass-dark:#7c5b26;
  --line:#e1dccc;
}
* {
  box-sizing:border-box;
}
html {
  scroll-behavior:smooth;
}
body {
  margin:0;
  background:var(--white);
  color:var(--ink);
  font-family:'Work Sans',sans-serif;
  font-size:16px;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}
a {
  text-decoration:none;
  color:inherit;
}
img {
  max-width:100%;
  display:block;
}
h1,h2,h3,p {
  margin-top:0;
}
h1,h2,h3 {
  font-family:'Fraunces',serif;
  font-weight:500;
  color:var(--ink);
}

/* ---------- header ---------- */
.site-header {
  height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 5.5vw;
  background:rgba(235,227,211,.94); /* --beige com leve transparência */
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--beige-deep);
  position:sticky;
  top:0;
  z-index:20;
}
.brand {
  display:flex;
  align-items:center;
  gap:13px;
}
.brand-mark {
  width:42px;
  height:42px;
  object-fit:cover;
  object-position:center;
  border-radius:50% 50% 50% 4px;
  background:var(--ink);
}
.brand-copy {
  display:flex;
  flex-direction:column;
  line-height:1.15;
}
.brand-copy strong {
  font-family:'Fraunces',serif;
  font-size:16px;
  font-weight:500;
  color:var(--ink);
}
.brand-copy small {
  font-size:11px;
  color:var(--slate);
  margin-top:2px;
  letter-spacing:.01em;
}
.desktop-nav {
  display:flex;
  align-items:center;
  gap:34px;
  margin-left:auto;
  margin-right:36px;
  font-size:12px;
  color:var(--ink-soft);
}
.desktop-nav a {
  position:relative;
  padding-bottom:3px;
}
.desktop-nav a::after {
  content:'';
  position:absolute;
  left:0;
  right:100%;
  bottom:-3px;
  height:1px;
  background:var(--brass);
  transition:right .25s ease;
}
.desktop-nav a:hover::after {
  right:0;
}
.desktop-nav .header-social {
  color:var(--brass-dark);
  font-weight:600;
}
.desktop-nav .header-social::after {
  display:none;
}
.mobile-social {
  display:none;
}
.button {
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:11px 20px;
  font-size:12px;
  font-weight:600;
  border-radius:999px;
  transition:transform .2s ease,background .2s ease,color .2s ease;
}
.button:hover {
  transform:translateY(-2px);
}
.button-dark {
  background:var(--ink);
  color:var(--brass-light);
}
.button-dark:hover {
  background:var(--brass-dark);
  color:var(--white);
}
.button-accent {
  background:var(--brass);
  color:var(--white);
}
.button-accent:hover {
  background:var(--ink);
  color:var(--brass-light);
}
.button-light {
  background:var(--brass-light);
  color:var(--ink);
}
.button-light:hover {
  background:var(--brass);
  color:var(--white);
}

/* ---------- hero ---------- */
.hero {
  position:relative;
  display:grid;
  grid-template-columns:1fr 1fr;
  max-width:970px;
  min-height:calc(100vh - 210px);
  margin:auto;
  padding:54px 0 58px;
  gap:12vw;
  align-items:center;
  overflow:visible;
}
.kicker {
  display:inline-flex;
  align-items:center;
  gap:11px;
  font-family:'Fraunces',serif;
  font-style:italic;
  font-size:15px;
  color:var(--slate);
  margin-bottom:26px;
}
.kicker-rule {
  width:30px;
  height:1px;
  background:var(--brass);
}
h1 {
  font-size:clamp(44px,4vw,58px);
  line-height:1.06;
  letter-spacing:-.01em;
  max-width:600px;
  margin-bottom:24px;
}
.hero-text {
  color:var(--slate);
  max-width:400px;
  font-size:14px;
  margin-bottom:34px;
}
.hero-actions {
  display:flex;
  align-items:center;
  gap:24px;
  flex-wrap:wrap;
  margin-bottom:40px;
}
.hero-actions .text-link {
  font-size:12px;
}
.text-link {
  font-size:13.5px;
  font-weight:600;
  color:var(--ink-soft);
  border-bottom:1px solid var(--line);
  padding-bottom:4px;
}
.text-link:hover {
  color:var(--brass-dark);
  border-color:var(--brass);
}
.text-link span {
  display:none;
}
.hero-proof {
  display:flex;
  align-items:center;
  gap:14px;
  padding-top:26px;
  border-top:1px solid var(--line);
  max-width:420px;
}
.hero-proof .stars {
  color:var(--brass);
  font-size:16px;
  letter-spacing:2px;
}
.hero-proof strong {
  font-family:'Fraunces',serif;
  font-size:26px;
  font-weight:500;
  color:var(--ink);
}
.hero-proof-copy {
  display:flex;
  flex-direction:column;
  gap:3px;
}
.hero-proof small {
  color:var(--slate);
  font-size:12.5px;
}
.hero-content {
  transform:translateY(-26px);
}
.hero-visual {
  position:relative;
  top:0;
  width:100%;
  max-width:390px;
  margin-left:auto;
}
.image-frame {
  aspect-ratio:4/5;
  overflow:hidden;
  background:var(--porcelain);
  border-radius:28px 96px 28px 96px;
  border:1px solid var(--line);
}
.image-frame img {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 68%;
}
.hero-note {
  position:absolute;
  bottom:-26px;
  left:-30px;
  background:var(--ink);
  color:var(--porcelain);
  padding:18px 22px;
  border-radius:16px;
  display:flex;
  gap:13px;
  align-items:center;
  font-size:12px;
  line-height:1.4;
  max-width:230px;
  box-shadow:0 18px 34px rgba(21,20,15,.22);
}
.hero-note strong {
  display:block;
  color:var(--brass-light);
  font-size:12.5px;
  font-family:'Fraunces',serif;
  font-weight:500;
}
.note-icon {
  flex:none;
  width:34px;
  height:34px;
  color:var(--brass-light);
}
.hero-arc {
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  width:100%;
  height:auto;
  color:var(--ink);
  pointer-events:none;
}

/* ---------- trust strip ---------- */
.trust-strip {
  background:var(--ink);
  color:var(--porcelain);
  display:grid;
  grid-template-columns:repeat(3,1fr) 1.15fr;
  min-height:132px;
  padding:38px 5.5vw 34px;
  gap:24px;
  position:relative;
}
.trust-strip>div {
  display:flex;
  align-items:center;
  gap:14px;
  padding-right:20px;
  border-right:1px solid rgba(217,188,132,.18);
}
.trust-strip>div:last-child {
  border:0;
}
.trust-icon {
  flex:none;
  width:28px;
  height:28px;
  color:var(--brass-light);
}
.trust-strip strong {
  font-size:14px;
  display:block;
  font-weight:600;
}
.trust-strip small {
  display:block;
  color:#b7ae9c;
  font-size:11.5px;
  margin-top:3px;
}
.trust-location {
  font-size:12px;
  line-height:1.45;
  justify-content:flex-end;
  color:#d5ccbd;
}
.trust-location strong {
  font-size:12.5px;
  color:var(--white);
}

/* ---------- shared section ---------- */
.section {
  padding:118px 5.5vw;
  max-width:1360px;
  margin:auto;
}
.section-heading {
  max-width:640px;
  margin-bottom:64px;
}
h2 {
  font-size:clamp(36px,3.6vw,52px);
  line-height:1.1;
}

/* ---------- specialties ---------- */
.specialties {
  width:100%;
  background:var(--porcelain);
}
.specialties-inner {
  display:grid;
  grid-template-columns:.85fr 1fr;
  gap:8vw;
}
.specialties .section-heading {
  margin-bottom:0;
}
.section-summary {
  color:var(--slate);
  font-size:15px;
  max-width:360px;
  margin:20px 0 0;
}
.specialty-list {
  border-top:1px solid var(--line);
}
.specialty-item {
  display:grid;
  grid-template-columns:48px 1fr auto;
  gap:22px;
  align-items:center;
  padding:28px 0;
  border-bottom:1px solid var(--line);
}
.item-icon {
  width:48px;
  height:48px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--white);
  border:1px solid var(--line);
  color:var(--brass-dark);
}
.item-icon svg {
  width:22px;
  height:22px;
}
.specialty-item h3 {
  font-size:22px;
  font-weight:500;
  margin:0 0 6px;
}
.specialty-item p {
  font-size:13.5px;
  color:var(--slate);
  margin:0;
  max-width:360px;
}
.item-arrow {
  width:30px;
  height:30px;
  color:var(--brass);
  transition:transform .2s ease;
}
.specialty-item:hover .item-arrow {
  transform:translate(3px,-3px);
}

/* ---------- doctors ---------- */
.doctors {
  display:grid;
  grid-template-columns:.82fr 1fr;
  gap:8vw;
  align-items:start;
}
.doctor-photo {
  position:sticky;
  top:112px;
  border-radius:28px 96px 28px 96px;
  overflow:hidden;
  border:1px solid var(--line);
  background:var(--porcelain);
}
.doctor-photo img {
  width:100%;
  height:auto;
  opacity:1;
  transform:translateY(0);
  transition:opacity .22s ease,transform .22s ease;
}
.doctor-photo img.is-changing {
  opacity:0;
  transform:translateY(8px);
}
.doctor-copy h2 {
  margin-bottom:22px;
}
.doctor-intro {
  color:var(--slate);
  font-size:16px;
  max-width:460px;
  margin-bottom:32px;
}
.doctor-tabs {
  display:flex;
  gap:8px;
  border-bottom:1px solid var(--line);
}
.doctor-tab {
  appearance:none;
  border:0;
  border-bottom:2px solid transparent;
  background:transparent;
  color:var(--slate);
  cursor:pointer;
  font:600 13.5px 'Work Sans',sans-serif;
  padding:12px 16px 14px;
}
.doctor-tab:first-child {
  padding-left:0;
}
.doctor-tab:hover,
.doctor-tab:focus-visible {
  color:var(--ink);
}
.doctor-tab.is-active {
  border-bottom-color:var(--brass);
  color:var(--ink);
}
.doctor-profile[hidden] {
  display:none;
}
.doctor-profiles {
  padding-top:26px;
}
.doctor-profile h3 {
  font-size:24px;
  font-weight:500;
  margin-bottom:14px;
}
.doctor-profile p {
  color:var(--slate);
  font-size:14px;
  line-height:1.7;
  margin:0 0 14px;
}
.doctor-profile p:last-of-type {
  margin-bottom:20px;
}
.credential-chips {
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  margin-bottom:6px;
}
.credential-chips span {
  font-size:11.5px;
  font-weight:600;
  color:var(--brass-dark);
  background:var(--porcelain);
  border:1px solid var(--line);
  padding:8px 13px;
  border-radius:999px;
}
.dark-link {
  color:var(--ink);
  display:inline-block;
  margin-top:22px;
  border-color:var(--line);
}

/* ---------- experience ---------- */
.experience {
  width:100%;
  background:linear-gradient(135deg,var(--beige-light) 0%,var(--beige) 55%,var(--beige-deep) 100%);
}
.experience-inner {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8vw;
  align-items:center;
}
.experience-copy {
  max-width:420px;
  color:var(--slate);
  font-size:16px;
}
.rating {
  border-top:1px solid var(--line);
  display:flex;
  align-items:center;
  gap:18px;
  margin-top:38px;
  padding-top:22px;
}
.rating strong {
  font-family:'Fraunces',serif;
  font-size:40px;
  font-weight:500;
  color:var(--ink);
}
.rating span {
  font-size:16px;
  letter-spacing:2px;
  color:var(--brass);
}
.rating small {
  display:block;
  color:var(--slate);
  font-size:11.5px;
  letter-spacing:0;
  margin-top:4px;
}

/* ---------- contact banner ---------- */
.contact-banner {
  background:var(--ink);
  color:var(--white);
  padding:72px 5.5vw;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:34px;
}
.contact-banner .kicker {
  color:var(--brass-light);
}
.contact-banner .kicker-rule {
  background:var(--brass-light);
}
.contact-banner h2 {
  color:var(--white);
  font-size:44px;
  margin-bottom:10px;
}
.contact-banner p:last-child {
  margin:0;
  color:#c9beac;
  font-size:14.5px;
}

/* ---------- footer ---------- */
.site-footer {
  background:#0e0d0a;
  color:var(--white);
  padding:38px 5.5vw;
  display:flex;
  align-items:center;
  gap:50px;
}
.footer-brand .brand-mark {
  background:var(--brass-light);
  color:var(--ink);
}
.footer-brand .brand-copy strong {
  color:var(--porcelain);
}
.footer-brand .brand-copy small {
  color:#a79c88;
}
.footer-info {
  font-size:12px;
  line-height:1.55;
  color:#a79c88;
  display:flex;
  gap:26px;
}
.footer-info a {
  color:var(--brass-light);
  font-weight:600;
}
.copyright {
  font-size:11px;
  color:#7d7565;
  margin-left:auto;
}

/* ---------- menu (mobile) ---------- */
.menu-toggle,
.mobile-menu {
  display:none;
}

/* ---------- reveal (single orchestrated entrance) ---------- */
.reveal {
  opacity:0;
  transform:translateY(16px);
  transition:opacity .6s ease,transform .6s ease;
}
.reveal.is-visible {
  opacity:1;
  transform:none;
}

/* ---------- responsive ---------- */
@media(max-width:960px) {
  .doctors {
    grid-template-columns:1fr;
    gap:44px;
  }
  .doctor-photo {
    position:static;
    max-width:420px;
  }
}
@media(max-width:800px) {
  .site-header {
    height:auto;
    min-height:68px;
    padding:12px 6vw;
    flex-wrap:nowrap;
  }
  .brand-copy {
    display:none;
  }
  .brand-mark {
    width:38px;
    height:38px;
    font-size:14px;
  }
  .header-cta {
    white-space:nowrap;
  }
  .desktop-nav {
    display:none;
  }
  .mobile-social {
    display:flex;
    align-items:center;
    justify-content:center;
    flex:0 0 24px;
    color:var(--brass-dark);
    width:24px;
    height:24px;
    margin-left:auto;
    margin-right:0;
  }
  .mobile-social svg {
    display:block;
    width:22px;
    height:22px;
  }
  .menu-toggle {
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:4px;
    width:34px;
    height:34px;
    padding:7px;
    margin-left:10px;
    flex:0 0 34px;
    border:1px solid var(--line);
    border-radius:8px;
    background:transparent;
    color:var(--ink);
    cursor:pointer;
  }
  .menu-toggle span {
    display:block;
    width:18px;
    height:1px;
    background:currentColor;
    transition:transform .2s,opacity .2s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform:translateY(5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity:0;
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform:translateY(-5px) rotate(-45deg);
  }
  .mobile-menu {
    position:absolute;
    z-index:10;
    top:100%;
    left:0;
    right:0;
    padding:8px 8vw 18px;
    background:var(--white);
    border-bottom:1px solid var(--line);
    box-shadow:0 12px 24px rgba(21,20,15,.1);
  }
  .mobile-menu.is-open {
    display:grid;
    gap:0;
  }
  .mobile-menu a {
    padding:15px 0;
    border-bottom:1px solid var(--line);
    color:var(--ink-soft);
    font-size:14px;
  }
  .mobile-menu a:last-child {
    border-bottom:0;
  }
  .mobile-menu a:hover,
  .mobile-menu a:focus-visible {
    color:var(--brass-dark);
  }
  .header-cta {
    padding:10px 16px;
    font-size:12px;
  }
  .hero {
    grid-template-columns:1fr;
    min-height:0;
    padding:48px 8vw 88px;
    gap:52px;
  }
  .hero-content {
    transform:none;
  }
  .hero-visual {
    top:0;
    max-width:340px;
    margin:0 auto;
  }
  .hero-note {
    left:0;
    bottom:-22px;
    max-width:200px;
  }
  .trust-strip {
    grid-template-columns:1fr 1fr;
    min-height:0;
    padding:32px 8vw;
    gap:22px;
  }
  .trust-strip>div {
    border:0;
    padding-right:0;
  }
  .trust-location {
    justify-content:flex-start;
    grid-column:1/-1;
    border-top:1px solid rgba(217,188,132,.18);
    padding-top:18px;
  }
  .section {
    padding:80px 8vw;
  }
  .specialties-inner,
  .experience-inner {
    grid-template-columns:1fr;
    gap:40px;
  }
  .section-heading {
    margin-bottom:8px;
  }
  .contact-banner {
    padding:56px 8vw;
    display:block;
  }
  .contact-banner h2 {
    font-size:38px;
  }
  .contact-banner .button {
    margin-top:26px;
  }
  .site-footer {
    padding:30px 8vw;
    display:grid;
    gap:20px;
  }
  .copyright {
    margin:0;
  }
  .footer-info {
    display:block;
  }
  .footer-info a {
    display:block;
    margin-top:8px;
  }
}
@media(max-width:420px) {
  .hero-actions {
    align-items:flex-start;
    flex-direction:column;
    gap:20px;
  }
  .trust-strip {
    grid-template-columns:1fr;
  }
  .trust-strip>div {
    border-bottom:1px solid rgba(217,188,132,.18);
    padding-bottom:16px;
  }
  .trust-strip>div:last-child {
    border:0;
  }
  .contact-banner h2 {
    font-size:32px;
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  *,*::before,*::after {
    transition-duration:.01ms!important;
    animation-duration:.01ms!important;
    animation-iteration-count:1!important;
  }
}
