/* Reset, base and variables */
:root {
  --color-primary: #c99638;
  --color-primary-light: #edc972;
  --color-secondary: #6f4c20;
  --color-dark: #050505;
  --color-surface: #0d0d0d;
  --color-surface-2: #141414;
  --color-light: #f6f1e8;
  --color-muted: #b2aea7;
  --color-border: rgba(201, 150, 56, .28);
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, .32);
  --radius-lg: 8px;
  --radius-md: 5px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body { margin: 0; overflow-x: hidden; background: var(--color-dark); color: var(--color-light); font-family: Arial, Helvetica, sans-serif; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin-top: 0; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 64px 0; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 9999; padding: 10px 14px; transform: translateY(-150%); background: #fff; color: #000; border-radius: 4px; }
.skip-link:focus { transform: none; }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 2px solid var(--color-primary-light); outline-offset: 4px; }

/* Font Awesome 6-style class aliases for the locally bundled Font Awesome Free */
.fa-solid { font-family: "Font Awesome 5 Free"; font-weight: 900; font-style: normal; }
.fa-regular { font-family: "Font Awesome 5 Free"; font-weight: 400; font-style: normal; }
.fa-brands { font-family: "Font Awesome 5 Brands"; font-weight: 400; font-style: normal; }

/* Typography and shared components */
h1, h2, .treatment-card h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.eyebrow { margin-bottom: 10px; color: var(--color-primary-light); font-size: .74rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.section-heading { margin-bottom: 34px; text-align: center; }
.section-heading h2, .about h2, .final-cta h2 { margin-bottom: 0; font-size: clamp(2rem, 4vw, 3.15rem); line-height: 1.1; }
.section-heading h2::after { content: ""; display: block; width: 48px; height: 1px; margin: 18px auto 0; background: var(--color-primary); }

.btn { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 10px; padding: 12px 24px; border: 1px solid var(--color-primary); border-radius: 3px; background: linear-gradient(135deg, #e3b85f, #bc8124); color: #0c0904; font-size: .78rem; font-weight: 800; letter-spacing: .035em; text-align: center; text-transform: uppercase; box-shadow: 0 10px 24px rgba(180, 122, 31, .18); transition: transform .25s ease, filter .25s ease, box-shadow .25s ease; }
.btn:hover, .btn:focus-visible { filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(180, 122, 31, .26); }
.btn--outline { background: rgba(0, 0, 0, .18); color: var(--color-light); box-shadow: none; }
.btn--outline:hover { background: rgba(201, 150, 56, .12); color: var(--color-primary-light); }
.btn--sm { min-height: 40px; padding: 9px 18px; font-size: .72rem; }

/* Header */
.site-header { position: relative; z-index: 50; background: #050505; }
.topbar { border-bottom: 1px solid rgba(201, 150, 56, .16); color: #bcb7ae; font-size: .74rem; }
.topbar__inner { display: flex; min-height: 38px; align-items: center; justify-content: space-between; gap: 20px; }
.topbar a, .topbar span { display: inline-flex; align-items: center; gap: 7px; }
.topbar i { color: var(--color-primary); }
.topbar__actions { display: flex; gap: 24px; }
.nav-wrap { background: rgba(5, 5, 5, .97); border-bottom: 1px solid rgba(255, 255, 255, .04); }
.navbar { display: flex; min-height: 82px; align-items: center; gap: 28px; }
.brand { width: 264px; height: 66px; display: flex; align-items: center; overflow: hidden; }
.brand img { width: 264px; height: auto; object-fit: contain; }
.main-nav { display: flex; flex: 1; align-items: center; justify-content: flex-end; gap: 26px; }
.main-nav a { position: relative; color: #dedbd4; font-size: .73rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.main-nav a::after { content: ""; position: absolute; right: 0; bottom: -9px; left: 0; height: 1px; transform: scaleX(0); background: var(--color-primary); transition: transform .2s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--color-primary-light); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--color-border); background: transparent; color: var(--color-primary-light); border-radius: 3px; cursor: pointer; }

/* Hero */
.hero { position: relative; min-height: 650px; display: flex; flex-direction: column; justify-content: space-between; background-image: linear-gradient(90deg, rgba(0,0,0,.98) 0%, rgba(0,0,0,.84) 32%, rgba(0,0,0,.22) 66%, rgba(0,0,0,.2) 100%), url("../img/consultorio-premium.jpg"); background-size: cover; background-position: center; border-bottom: 1px solid var(--color-border); }
.hero__inner { flex: 1; display: flex; align-items: center; padding-top: 54px; padding-bottom: 54px; }
.hero__copy { max-width: 610px; }
.hero h1 { margin-bottom: 22px; color: #f2ede5; font-size: clamp(2.65rem, 5.1vw, 5rem); line-height: 1.03; letter-spacing: -.025em; text-transform: uppercase; }
.hero h1 span { display: inline-block; color: var(--color-primary-light); }
.hero__text { max-width: 520px; margin-bottom: 30px; color: #cbc6bf; font-size: 1.04rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.credentials { background: rgba(3, 3, 3, .88); border-top: 1px solid rgba(201, 150, 56, .26); backdrop-filter: blur(8px); }
.credentials__grid { display: grid; max-width: 820px; grid-template-columns: repeat(4, 1fr); padding: 22px 0; }
.credentials__grid > div { min-height: 50px; display: flex; align-items: center; justify-content: center; gap: 11px; color: var(--color-primary-light); border-right: 1px solid var(--color-border); }
.credentials__grid > div:last-child { border: 0; }
.credentials i { font-size: 1.65rem; }
.credentials strong { font: 1.55rem Georgia, serif; }
.credentials span { display: block; font-size: .74rem; line-height: 1.25; text-transform: uppercase; }
.credentials b { letter-spacing: .11em; }

/* Benefits */
.benefits { position: relative; z-index: 2; padding: 0; background: #070707; }
.benefits__grid { display: grid; grid-template-columns: repeat(5, 1fr); box-shadow: var(--shadow-soft); }
.benefit-card { min-height: 220px; padding: 30px 22px 24px; background: linear-gradient(150deg, #151515, #0b0b0b); text-align: center; border-right: 1px solid var(--color-border); }
.benefit-card:last-child { border: 0; }
.benefit-card > i { margin-bottom: 14px; color: var(--color-primary); font-size: 2rem; }
.benefit-card h2 { margin-bottom: 12px; color: var(--color-primary-light); font-family: Arial, sans-serif; font-size: .88rem; font-weight: 800; line-height: 1.3; text-transform: uppercase; }
.benefit-card p { margin: 0; color: var(--color-muted); font-size: .84rem; line-height: 1.55; }

/* Treatments */
.treatments { background: radial-gradient(circle at 50% 0, rgba(201, 150, 56, .06), transparent 31%), #060606; }
.treatments__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.treatment-card { overflow: hidden; display: flex; flex-direction: column; background: linear-gradient(145deg, #171717, #0c0c0c); border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius-md); transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.treatment-card:hover, .treatment-card:focus-visible { transform: translateY(-6px); border-color: var(--color-border); box-shadow: 0 20px 45px rgba(0,0,0,.35); }
.treatment-card img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: contain; background: #080808; }
.treatment-card .image-zoom { object-position: center 38%; transform: scale(1.13); }
.treatment-card .image-face { object-position: 72% center; }
.treatment-card__body { min-height: 220px; display: flex; flex: 1; flex-direction: column; padding: 26px 24px; }
.treatment-card h3 { margin-bottom: 12px; color: var(--color-primary-light); font-size: 1.5rem; line-height: 1.08; }
.treatment-card p { margin-bottom: 20px; color: var(--color-muted); font-size: .84rem; }
.treatment-card__link { margin-top: auto; color: var(--color-primary-light); font-size: .74rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.treatment-card__link i { margin-left: 5px; font-size: .6rem; transition: transform .2s ease; }
.treatment-card:hover .treatment-card__link i, .treatment-card:focus-visible .treatment-card__link i { transform: translateX(4px); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 42px; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.stats > div { display: grid; grid-template-columns: auto auto; align-items: center; justify-content: center; column-gap: 12px; padding: 25px 18px; border-right: 1px solid var(--color-border); text-align: center; }
.stats > div:last-child { border: 0; }
.stats i { grid-row: 1 / span 2; color: var(--color-primary); font-size: 1.9rem; }
.stats strong { color: #f4eee5; font: 2.15rem Georgia, serif; line-height: 1; }
.stats span { color: var(--color-muted); font-size: .75rem; line-height: 1.35; }
.stats--qualities strong { font-size: 1.3rem; }
.stats--qualities > div { grid-template-columns: auto minmax(0, 1fr); justify-content: stretch; text-align: left; }

/* Process */
.process { padding-top: 24px; background: #050505; }
.process__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 38px; counter-reset: steps; }
.process li { position: relative; text-align: center; }
.process li:not(:last-child)::after { content: "\f061"; position: absolute; top: 34px; right: -27px; color: var(--color-primary); font-family: "Font Awesome 5 Free"; font-size: .7rem; font-weight: 900; }
.process__icon { width: 76px; height: 76px; display: grid; place-items: center; margin: 0 auto 18px; border: 1px solid var(--color-primary); border-radius: 50%; color: var(--color-primary-light); font-size: 1.8rem; box-shadow: inset 0 0 18px rgba(201,150,56,.06); }
.process h3 { margin-bottom: 8px; color: var(--color-primary-light); font-size: .86rem; }
.process p { margin: 0; color: var(--color-muted); font-size: .8rem; }

/* Testimonials */
.testimonials { background: linear-gradient(180deg, #050505, #090909); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.testimonial-card { display: flex; min-height: 300px; flex-direction: column; padding: 26px; background: linear-gradient(145deg, #171717, #0e0e0e); border: 1px solid rgba(255,255,255,.05); border-radius: var(--radius-md); box-shadow: 0 18px 34px rgba(0,0,0,.18); }
.testimonial-card__header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.avatar { flex: 0 0 58px; width: 58px; height: 58px; display: grid; place-items: center; border: 2px solid rgba(201,150,56,.55); border-radius: 50%; background: #7f513e; color: #fff; font-size: 1.25rem; }
.avatar--two { background: #4a5f61; }
.avatar--three { background: #824d52; }
.testimonial-card h3 { margin-bottom: 7px; color: var(--color-primary-light); font-size: .95rem; }
.testimonial-card blockquote { position: relative; margin: 0 0 24px; color: #d6d1c9; font-family: Georgia, "Times New Roman", serif; font-size: .98rem; line-height: 1.65; }
.testimonial-card__source { display: flex; align-items: center; gap: 8px; margin: auto 0 0; color: #9f9a92; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; }
.testimonial-card__source i { color: var(--color-primary); font-size: .9rem; }
.stars { display: flex; gap: 4px; color: #e3aa2c; font-size: .7rem; }
.testimonials__google-cta { display: flex; justify-content: center; margin-top: 28px; }
.video-testimonials { margin-top: 54px; padding-top: 44px; border-top: 1px solid var(--color-border); }
.video-testimonials__heading { margin-bottom: 24px; text-align: center; }
.video-testimonials__heading h3 { margin: 0; color: #eee8df; font: 400 clamp(1.65rem, 3vw, 2.3rem) Georgia, "Times New Roman", serif; }
.video-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.video-card { position: relative; overflow: hidden; min-height: 310px; padding: 0; border: 1px solid rgba(201,150,56,.22); border-radius: var(--radius-md); background: #0c0c0c; color: #fff; cursor: pointer; box-shadow: var(--shadow-soft); }
.video-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.92) 100%); transition: background .25s ease; }
.video-card:hover::after, .video-card:focus-visible::after { background: linear-gradient(180deg, rgba(201,150,56,.06), rgba(0,0,0,.9) 100%); }
.video-card img { width: 100%; height: 330px; object-fit: cover; transition: transform .4s ease; }
.video-card:hover img, .video-card:focus-visible img { transform: scale(1.04); }
.video-card__play { position: absolute; top: 50%; left: 50%; z-index: 2; width: 58px; height: 58px; display: grid; place-items: center; transform: translate(-50%, -50%); border: 1px solid rgba(255,255,255,.55); border-radius: 50%; background: rgba(8,8,8,.72); color: var(--color-primary-light); font-size: 1.05rem; backdrop-filter: blur(7px); transition: transform .25s ease, background .25s ease; }
.video-card:hover .video-card__play, .video-card:focus-visible .video-card__play { transform: translate(-50%, -50%) scale(1.08); background: var(--color-primary); color: #080603; }
.video-card__label { position: absolute; right: 18px; bottom: 16px; left: 18px; z-index: 2; color: #f3eee6; font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-align: left; text-transform: uppercase; }

/* Video testimonial modal */
.video-modal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 26px; visibility: hidden; opacity: 0; transition: opacity .25s ease, visibility .25s ease; }
.video-modal.is-open { visibility: visible; opacity: 1; }
.video-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.86); backdrop-filter: blur(10px); }
.video-modal__dialog { position: relative; z-index: 1; width: min(92vw, 760px); overflow: hidden; transform: translateY(18px) scale(.98); border: 1px solid rgba(201,150,56,.36); border-radius: 8px; background: #0b0b0b; box-shadow: 0 30px 90px rgba(0,0,0,.72); transition: transform .25s ease; }
.video-modal.is-open .video-modal__dialog { transform: none; }
.video-modal__close { position: absolute; top: 12px; right: 12px; z-index: 3; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(237,201,114,.55); border-radius: 50%; background: rgba(8,8,8,.82); color: #fff; cursor: pointer; box-shadow: 0 8px 24px rgba(0,0,0,.4); backdrop-filter: blur(7px); }
.video-modal__close:hover { background: rgba(201,150,56,.14); color: var(--color-primary-light); }
.video-modal__player { display: grid; max-height: calc(100vh - 52px); place-items: center; background: #000; }
.video-modal video { display: block; width: 100%; max-height: calc(100vh - 52px); background: #000; }

/* About */
.about { padding-bottom: 0; }
.about__grid { display: grid; grid-template-columns: .82fr 1.18fr; min-height: 580px; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.about__photo { position: relative; overflow: hidden; min-height: 0; }
.about__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.about__content { display: flex; flex-direction: column; justify-content: center; padding: 44px 54px; background: radial-gradient(circle at 20% 20%, rgba(201,150,56,.05), transparent 45%), #090909; }
.about h2 { margin-bottom: 18px; }
.about__content > p:not(.eyebrow) { color: #c5c0b8; font-size: .95rem; }
.about__content > .about__registry { margin: -6px 0 18px; color: var(--color-primary-light); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.about__list { margin: 8px 0 28px; }
.about__list li { display: flex; align-items: center; gap: 13px; margin-bottom: 9px; color: #d5d0c8; font-size: .86rem; }
.about__list i { width: 20px; color: var(--color-primary); text-align: center; }
.about .btn { align-self: flex-start; }

/* FAQ */
.faq__grid { display: grid; grid-template-columns: 1.6fr .8fr; align-items: stretch; gap: 48px; max-width: 1060px; margin: auto; }
.faq__list details { border-bottom: 1px solid var(--color-border); background: linear-gradient(90deg, #161616, #0b0b0b); }
.faq__list details:first-child { border-top: 1px solid var(--color-border); }
.faq summary { display: flex; min-height: 54px; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 18px; color: #e5e0d8; font-size: .9rem; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { color: var(--color-primary); transition: transform .25s ease; }
.faq details[open] summary i { transform: rotate(180deg); }
.faq details p { padding: 0 18px 18px; margin: 0; color: var(--color-muted); font-size: .84rem; }
.whatsapp-card { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 35px; background: linear-gradient(145deg, #171717, #0c0c0c); border: 1px solid rgba(255,255,255,.05); box-shadow: var(--shadow-soft); }
.whatsapp-card > i { margin-bottom: 15px; color: var(--color-primary); font-size: 2.6rem; }
.whatsapp-card h3 { margin-bottom: 8px; font-size: 1.2rem; }
.whatsapp-card p { color: var(--color-muted); font-size: .84rem; }
.whatsapp-card .btn { width: 100%; }
.contact-card address { margin-bottom: 14px; color: var(--color-muted); font-size: .86rem; font-style: normal; }
.contact-card__phone { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 20px; color: var(--color-primary-light); font-weight: 700; }
.contact-card__actions { width: 100%; display: grid; grid-template-columns: 1fr; gap: 10px; }

/* Final call to action */
.final-cta { overflow: hidden; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); background: #080706; }
.final-cta__inner { display: grid; min-height: 320px; grid-template-columns: 1.25fr .9fr; }
.final-cta__copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 50px 45px 50px 25px; }
.final-cta h2 { margin-bottom: 14px; }
.final-cta__copy > p:not(.eyebrow) { max-width: 540px; margin-bottom: 24px; color: #c4beb6; }
.final-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.final-cta__image { position: relative; margin-right: calc((100vw - min(100vw - 40px, var(--container))) / -2); background-image: linear-gradient(90deg, #080706 0%, transparent 30%), url("../img/sorriso-natural.jpg"); background-size: cover; background-position: center; }

/* Footer */
.site-footer { padding-top: 48px; background: #040404; }
.footer__grid { display: grid; grid-template-columns: 1.35fr .8fr 1fr 1.25fr .8fr; gap: 38px; padding-bottom: 38px; }
.footer__brand img { width: 240px; height: auto; margin: 0 0 14px; object-fit: contain; }
.site-footer h2 { margin-bottom: 14px; color: var(--color-primary-light); font-family: Arial, sans-serif; font-size: .78rem; font-weight: 800; text-transform: uppercase; }
.site-footer p, .site-footer li, .site-footer a { color: #aaa59e; font-size: .76rem; }
.site-footer li { margin-bottom: 7px; }
.site-footer a:hover { color: var(--color-primary-light); }
.contact-list li { display: grid; grid-template-columns: 16px 1fr; gap: 7px; }
.contact-list i { color: var(--color-primary); }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a, .footer-whatsapp { width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid var(--color-border); border-radius: 50%; color: var(--color-primary-light); }
.footer-whatsapp { width: 42px; height: 42px; border-radius: 5px; background: var(--color-primary); color: #080603 !important; font-size: 1.25rem !important; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.06); }
.footer__bottom p { margin: 0; font-size: .7rem; }
.footer__bottom a { color: var(--color-primary-light); }
.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 30; width: 54px; height: 54px; display: grid; place-items: center; border: 2px solid #66e092; border-radius: 50%; background: #1ebd5d; color: #fff; font-size: 1.65rem; box-shadow: 0 10px 30px rgba(0,0,0,.38); transition: transform .2s ease; }
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.04); }

/* Subtle reveal animation */
.reveal { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; } .reveal { opacity: 1; transform: none; } }

/* Responsive layout */
@media (max-width: 1050px) {
  .nav-cta { display: none; }
  .topbar__inner > span { display: none; }
  .main-nav { gap: 18px; }
  .benefit-card { padding-inline: 14px; }
  .treatments__grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid { gap: 20px; }
  .process li:not(:last-child)::after { display: none; }
  .footer__grid { grid-template-columns: 1.3fr repeat(3, 1fr); }
  .footer__grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 820px) {
  .topbar__inner > span { display: none; }
  .topbar__actions a:last-child { display: none; }
  .brand { margin-right: auto; }
  .menu-toggle { display: grid; place-items: center; }
  .main-nav { position: absolute; top: 100%; right: 20px; left: 20px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 10px; background: #0b0b0b; border: 1px solid var(--color-border); box-shadow: var(--shadow-soft); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 13px 12px; }
  .main-nav a::after { display: none; }
  .hero { min-height: 610px; background-position: 62% center; }
  .hero__copy { max-width: 550px; }
  .credentials__grid { grid-template-columns: repeat(2, 1fr); }
  .credentials__grid > div:nth-child(2) { border-right: 0; }
  .credentials__grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--color-border); }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-card { min-height: auto; border-bottom: 1px solid var(--color-border); }
  .benefit-card:nth-child(even) { border-right: 0; }
  .benefit-card:last-child { grid-column: 1 / -1; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats > div:nth-child(2) { border-right: 0; }
  .stats > div:nth-child(-n+2) { border-bottom: 1px solid var(--color-border); }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .process li:last-child { grid-column: 1 / -1; max-width: 240px; margin: auto; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .video-gallery { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; }
  .about__grid { height: auto; }
  .about__photo { height: 400px; min-height: 0; }
  .about__content { padding: 45px 35px; }
  .faq__grid { grid-template-columns: 1fr; gap: 28px; }
  .final-cta__inner { grid-template-columns: 1fr; }
  .final-cta__image { min-height: 250px; margin: 0 -20px; background-image: linear-gradient(180deg, #080706, transparent 30%), url("../img/sorriso-natural.jpg"); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid > div:last-child { grid-column: auto; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 48px 0; }
  .topbar { display: none; }
  .navbar { min-height: 74px; }
  .brand { width: 215px; height: 62px; }
  .brand img { width: 215px; height: auto; }
  .hero { min-height: 680px; background-image: linear-gradient(90deg, rgba(0,0,0,.95), rgba(0,0,0,.56)), url("../img/consultorio-premium.jpg"); background-position: 66% center; }
  .hero__inner { align-items: flex-end; padding-bottom: 44px; }
  .hero h1 { font-size: 2.45rem; }
  .hero__text { font-size: .93rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .credentials__grid { padding-block: 10px; }
  .credentials__grid > div { padding: 12px 6px; }
  .credentials strong { font-size: 1.2rem; }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-card { padding: 22px 12px; border-right: 1px solid var(--color-border); }
  .benefit-card:nth-child(even) { border-right: 0; }
  .benefit-card:last-child { grid-column: 1 / -1; border-right: 0; }
  .treatments__grid { grid-template-columns: 1fr; gap: 15px; }
  .treatment-card img { height: auto; }
  .treatment-card__body { min-height: 210px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats > div { display: flex; min-height: 132px; flex-direction: column; justify-content: center; gap: 6px; padding: 18px 10px; border-right: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); text-align: center; }
  .stats > div:nth-child(even) { border-right: 0; }
  .stats > div:nth-child(n+3) { border-bottom: 0; }
  .stats i { font-size: 1.55rem; }
  .stats--qualities strong { font-size: 1.12rem; }
  .stats span { font-size: .72rem; }
  .process__grid { grid-template-columns: 1fr; gap: 22px; }
  .process li, .process li:last-child { display: grid; grid-template-columns: 62px 1fr; align-items: center; column-gap: 15px; max-width: none; margin: 0; text-align: left; }
  .process__icon { grid-row: 1 / span 2; width: 58px; height: 58px; margin: 0; font-size: 1.25rem; }
  .process h3 { margin: 0 0 4px; font-size: .9rem; }
  .process p { font-size: .79rem; }
  .testimonial-card { padding: 20px 16px; }
  .video-testimonials { margin-top: 42px; padding-top: 36px; }
  .video-gallery { gap: 10px; }
  .video-card { min-height: 250px; }
  .video-card img { height: 270px; }
  .video-card__play { width: 50px; height: 50px; }
  .video-modal { padding: 12px; }
  .video-modal__dialog { width: 100%; }
  .video-modal__close { top: 9px; right: 9px; width: 38px; height: 38px; }
  .about__photo { height: 340px; min-height: 0; }
  .about__content { padding: 38px 22px; }
  .whatsapp-card { padding: 26px; }
  .final-cta__copy { padding: 45px 8px; }
  .final-cta__actions { width: 100%; flex-direction: column; }
  .final-cta__actions .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .floating-whatsapp { right: 14px; bottom: 14px; }
}
