:root {
  --paper:#faf8f5;
  --white:#fff;
  --ink:#203a2e;
  --muted:#60695f;
  --green:#00602d;
  --green-dark:#004d24;
  --line:#dedfd6;
  --orange:#a44d10;
  --orange-bg:#faf0e5;
  --serif:"Playfair Display",Georgia,serif;
  --sans:"Plus Jakarta Sans",system-ui,sans-serif
}

* {
  box-sizing:border-box
}

html {
  scroll-behavior:smooth;
  scroll-padding-top:112px
}

body {
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--sans);
  font-size:15px;
  line-height:1.75
}

a {
  color:inherit;
  text-decoration:none
}

button,input,select {
  font:inherit
}

button,a,input,select,summary {
  -webkit-tap-highlight-color:transparent
}

a,button {
  touch-action:manipulation
}

a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,summary:focus-visible {
  outline:3px solid #ad6c27;
  outline-offset:5px
}

a:hover {
  text-decoration:underline;
  text-underline-offset:5px
}

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

figure,p,h1,h2,h3,dl,dd {
  margin:0
}

address {
  font-style:normal
}

button {
  cursor:pointer
}

fieldset {
  margin:0;
  padding:0;
  border:0;
  min-width:0
}

em {
  font-weight:500
}

::selection {
  background:#d5e5d5
}

.container {
  width:min(1200px,calc(100% - 96px));
  margin-inline:auto
}

.skip-link {
  position:fixed;
  top:-100px;
  left:16px;
  z-index:100;
  background:#fff;
  padding:12px
}

.skip-link:focus {
  top:12px
}

.topbar {
  background:#17482e;
  color:#f3f5ed;
  font-size:11px;
  letter-spacing:.02em
}

.topbar-inner {
  display:flex;
  justify-content:space-between;
  align-items:center;
  min-height:35px;
  gap:20px
}

.topbar-inner div {
  display:flex;
  gap:24px
}

.site-header {
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(250,248,245,.97);
  border-bottom:1px solid var(--line)
}

.header-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  min-height:95px
}

.brand {
  flex-shrink:0;
  width:194px
}

.main-nav {
  display:flex;
  align-items:center;
  gap:25px;
  font-size:12px;
  font-weight:500
}

.main-nav a {
  padding-block:14px
}

.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:28px;
  background:var(--green);
  color:white;
  border:1px solid transparent;
  border-radius:4px;
  min-height:54px;
  padding:14px 23px;
  font-size:13px;
  font-weight:600;
  line-height:1.5;
  transition:background .18s
}

.button:hover {
  background:var(--green-dark);
  text-decoration:none
}

.button span {
  font-size:19px;
  line-height:1
}

.button-small {
  padding:11px 17px;
  min-height:43px;
  font-size:12px;
  gap:17px
}

.menu-toggle {
  display:none
}

.eyebrow {
  font-size:10px;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--green);
  margin-bottom:24px
}

.hero {
  padding:72px 0 76px;
  border-bottom:1px solid var(--line)
}

.hero-grid {
  display:grid;
  grid-template-columns:1.04fr 1fr;
  align-items:center;
  gap:55px
}

.hero h1 {
  font:500 clamp(42px,4.7vw,65px)/1.14 var(--serif);
  letter-spacing:-.04em
}

.hero h1 em {
  color:var(--green)
}

.hero-description {
  max-width:390px;
  margin-top:27px;
  color:var(--muted);
  font-size:14px;
  line-height:1.85
}

.hero-actions {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:24px;
  margin-top:29px
}

.text-link {
  display:inline-flex;
  align-items:center;
  gap:20px;
  font-weight:600;
  font-size:12px;
  color:var(--green);
  padding:7px 0;
  border-bottom:1px solid currentColor;
  line-height:1.5
}

.text-link:hover {
  text-decoration:none;
  border-bottom-width:2px;
  padding-bottom:6px
}

.hero-note {
  margin-top:35px;
  padding-left:15px;
  border-left:2px solid #b6c9ad;
  font-size:11px;
  line-height:1.9;
  color:var(--muted)
}

.hero-images {
  position:relative;
  padding:0 24px 115px 0
}

.hero-primary img {
  width:100%;
  height:354px;
  object-fit:cover;
  object-position:60% center;
  border-radius:3px
}

.hero-images figcaption {
  font-size:10px;
  letter-spacing:.03em;
  color:var(--muted);
  padding-top:10px
}

.hero-secondary {
  position:absolute;
  bottom:0;
  right:0;
  width:57%;
  padding:9px 0 0 9px;
  background:var(--paper)
}

.hero-secondary img {
  width:100%;
  height:195px;
  object-fit:cover;
  border-radius:2px
}

.hero-secondary figcaption {
  text-align:right
}

.section {
  padding:90px 0
}

h2 {
  font:500 clamp(32px,3vw,43px)/1.22 var(--serif);
  letter-spacing:-.025em
}

h2 em {
  color:var(--green)
}

.section-copy>p:not(.eyebrow) {
  margin-top:24px;
  color:var(--muted);
  font-size:13px;
  line-height:1.95
}

.pharmacy-grid {
  display:grid;
  grid-template-columns:1fr 1.02fr;
  gap:80px;
  align-items:center
}

.pharmacy-gallery {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  align-items:start
}

.pharmacy-gallery figure:nth-child(2) {
  padding-top:45px
}

.pharmacy-gallery img {
  width:100%;
  border-radius:3px;
  aspect-ratio:9/16;
  object-fit:contain
}

.pharmacy-gallery a {
  display:block
}

.pharmacy-gallery figcaption {
  font-size:10px;
  color:var(--muted);
  margin-top:10px;
  line-height:1.6
}

.feature-list {
  list-style:none;
  padding:0;
  margin:24px 0;
  font-size:12px;
  line-height:1.7
}

.feature-list li {
  position:relative;
  padding:11px 0 11px 20px;
  border-bottom:1px solid var(--line)
}

.feature-list li::before {
  content:"";
  width:5px;
  height:5px;
  position:absolute;
  left:0;
  top:20px;
  background:var(--green);
  border-radius:50%
}

.orthopedics {
  background:var(--orange-bg);
  border-block:1px solid #edddcc
}

.orthopedics-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:110px;
  align-items:center
}

.orthopedics-photo {
  width:100%;
  max-width:420px;
  justify-self:end
}

.orthopedics-photo img {
  width:100%;
  height:auto;
  border-radius:3px
}

.orthopedics-photo figcaption {
  margin-top:10px;
  color:#75624e;
  font-size:10px
}

.orthopedics .eyebrow,.orthopedics h2 em {
  color:var(--orange)
}

.orthopedics .section-copy>p:not(.eyebrow) {
  max-width:400px;
  color:#75624e
}

.button-orange {
  background:var(--orange);
  margin-top:28px
}

.button-orange:hover {
  background:#873d08
}

.product-list {
  margin-top:26px
}

.product-list>div {
  padding:12px 0;
  border-bottom:1px solid #ddcbb7
}

.product-list>div:first-child {
  border-top:1px solid #ddcbb7
}

.product-list dt {
  font-family:var(--serif);
  font-size:20px;
  line-height:1.35;
  color:#744321
}

.product-list dt span {
  display:inline-block;
  width:32px;
  vertical-align:middle;
  font-family:var(--sans);
  font-size:10px;
  color:var(--orange)
}

.product-list dd {
  margin:5px 0 0 32px;
  font-size:12px;
  line-height:1.8;
  color:#75624e
}

.quote-section {
  background:#f0f3ed
}

.quote-grid {
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:95px;
  align-items:center
}

.quote-instruction {
  max-width:350px
}

.opening-hours {
  margin-top:30px;
  font-size:12px
}

.opening-hours>span {
  font-size:10px;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:600
}

.opening-hours p {
  margin-top:8px;
  color:var(--muted)
}

.quote-form {
  background:var(--white);
  border:1px solid var(--line);
  padding:32px;
  border-radius:5px
}

.field {
  display:flex;
  flex-direction:column;
  gap:8px;
  min-width:0
}

.field label,legend {
  font-size:11px;
  font-weight:600
}

.field input,.field select {
  width:100%;
  min-height:48px;
  background:white;
  border:1px solid #cdd3c8;
  border-radius:3px;
  padding:10px 12px;
  color:var(--ink);
  font-size:12px
}

.field select {
  padding-right:25px
}

.field input::placeholder {
  color:#727a6f;
  font-size:11px
}

.field-hint {
  font-size:10px;
  color:var(--muted)
}

.quote-form fieldset {
  margin-top:20px
}

legend {
  margin-bottom:9px
}

.city-options {
  display:grid;
  grid-template-columns:.75fr 1.25fr;
  gap:10px
}

.city-options label {
  display:flex;
  align-items:center;
  gap:8px;
  border:1px solid #cdd3c8;
  padding:12px 10px;
  font-size:11px;
  line-height:1.6;
  border-radius:3px;
  cursor:pointer
}

.city-options label:has(input:checked) {
  background:#eff4ed;
  border-color:#769a78
}

.city-options input {
  accent-color:var(--green);
  margin:0;
  flex-shrink:0
}

.form-row {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-top:20px
}

.submit-button {
  width:100%;
  margin-top:23px
}

.form-note {
  font-size:10px;
  color:var(--muted);
  line-height:1.8;
  margin-top:13px
}

.form-note a {
  text-decoration:underline
}

.section-heading {
  display:flex;
  justify-content:space-between;
  gap:30px;
  align-items:end;
  margin-bottom:42px
}

.section-heading .eyebrow {
  margin-bottom:12px
}

.section-heading>p {
  font-size:12px;
  color:var(--muted)
}

.locations-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px
}

.location {
  border-top:2px solid var(--green);
  padding-top:22px;
  display:flex;
  flex-direction:column;
  align-items:start
}

.location-orange {
  border-color:var(--orange)
}

.location-city {
  font:500 23px/1.3 var(--serif);
  letter-spacing:-.025em
}

.location-city span {
  font:400 10px var(--sans);
  color:var(--muted)
}

.location h3 {
  font-size:11px;
  font-weight:600;
  color:var(--green);
  margin-top:13px;
  line-height:1.8;
  min-height:44px
}

.location-orange h3,.location-orange .directions {
  color:var(--orange)
}

.location address {
  font-size:11px;
  line-height:1.9;
  color:var(--muted);
  margin-top:16px;
  min-height:43px
}

.directions {
  margin-top:12px;
  font-size:11px
}

.contact-list {
  width:100%;
  margin-top:22px;
  font-size:11px
}

.contact-list>div {
  margin-bottom:15px
}

.contact-list dt {
  color:var(--muted);
  font-size:10px;
  margin-bottom:2px
}

.contact-list dd a {
  font-size:13px;
  font-weight:500
}

.contact-note {
  font-size:10px;
  line-height:1.8;
  color:var(--muted);
  margin-bottom:20px
}

.site-footer {
  background:#17281e;
  color:#bfcbc1;
  padding:52px 0 24px;
  font-size:11px;
  line-height:1.9
}

.footer-grid {
  display:grid;
  grid-template-columns:1fr 1fr 1.15fr 1.1fr;
  gap:38px;
  padding-bottom:38px
}

.footer-grid h2 {
  font-family:var(--sans);
  font-size:12px;
  font-weight:600;
  letter-spacing:0;
  line-height:1.6;
  color:white;
  margin-bottom:18px
}

.footer-grid p {
  margin-top:10px
}

.footer-grid a {
  color:#d8e7da
}

.footer-mission img {
  width:177px;
  filter:brightness(0) invert(1);
  opacity:.92;
  margin:0 0 20px
}

.footer-mission>p {
  max-width:220px
}

.footer-label {
  color:#e5ede4;
  font-weight:500;
  font-size:10px
}

.footer-social {
  display:flex;
  flex-direction:column;
  gap:7px;
  overflow-wrap:anywhere
}

.business-details {
  margin-top:21px
}

.business-details p {
  margin-top:6px
}

.business-details a {
  font-size:10px;
  overflow-wrap:anywhere
}

.business-details strong {
  font-weight:500;
  color:#e5ede4
}

.footer-bottom {
  border-top:1px solid #344538;
  padding-top:22px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  font-size:10px
}

.footer-bottom details {
  justify-self:end;
  max-width:480px
}

.footer-bottom summary {
  cursor:pointer;
  text-align:right;
  min-height:30px
}

.footer-bottom details p {
  margin-top:14px
}

.footer-bottom details a {
  text-decoration:underline
}

#privacidade {
  scroll-margin-top:120px
}

@media(min-width:1500px) {
  .hero {
    padding-block:90px
  }
  .hero h1 {
    font-size:68px
  }
}

@media(max-width:1100px) {
  .container {
    width:calc(100% - 64px)
  }
  .header-inner {
    gap:20px
  }
  .main-nav {
    gap:15px;
    font-size:11px
  }
  .brand {
    width:170px
  }
  .button-small {
    font-size:11px;
    padding-inline:12px
  }
  .hero-grid {
    gap:35px
  }
  .hero h1 {
    font-size:52px
  }
  .hero-primary img {
    height:330px
  }
  .hero-secondary img {
    height:160px
  }
  .hero-images {
    padding-bottom:100px
  }
  .pharmacy-grid {
    gap:45px
  }
  .orthopedics-grid,.quote-grid {
    gap:60px
  }
  .locations-grid {
    gap:25px
  }
  .footer-grid {
    gap:24px
  }
  .quote-form {
    padding:24px
  }
}

@media(max-width:900px) {
  .header-inner {
    flex-wrap:wrap;
    min-height:82px;
    gap:15px;
    padding-block:18px
  }
  .brand {
    width:170px
  }
  .header-cta {
    margin-left:auto
  }
  .main-nav {
    order:4;
    width:100%;
    justify-content:center
  }
  .menu-toggle:not([hidden]) {
    display:flex;
    align-items:center;
    gap:10px;
    border:1px solid var(--line);
    border-radius:3px;
    padding:10px;
    background:none;
    font-size:11px;
    min-height:43px
  }
  .main-nav.is-enhanced {
    display:none
  }
  .main-nav.is-enhanced.is-open {
    display:flex;
    align-items:start;
    flex-direction:column;
    gap:0;
    padding-top:10px;
    border-top:1px solid var(--line)
  }
  .main-nav.is-open a {
    width:100%
  }
  .hero {
    padding-block:50px
  }
  .hero h1 {
    font-size:44px
  }
  .hero-grid {
    gap:30px
  }
  .hero-primary img {
    height:300px
  }
  .hero-secondary {
    width:70%
  }
  .hero-secondary img {
    height:150px
  }
  .hero-images {
    padding-right:10px
  }
  .hero-actions {
    gap:20px
  }
  .section {
    padding-block:65px
  }
  .pharmacy-grid {
    gap:30px;
    grid-template-columns:1fr 1.1fr
  }
  .pharmacy-gallery {
    gap:10px
  }
  .pharmacy-gallery figure:nth-child(2) {
    padding-top:25px
  }
  .orthopedics-grid {
    gap:45px
  }
  .quote-grid {
    grid-template-columns:1fr;
    gap:35px
  }
  .quote-section .section-copy {
    max-width:550px
  }
  .quote-instruction {
    max-width:none
  }
  .opening-hours {
    margin-top:20px
  }
  .quote-form {
    max-width:640px;
    width:100%
  }
  .locations-grid {
    grid-template-columns:1fr
  }
  .location {
    display:grid;
    grid-template-columns:1.05fr 1fr;
    column-gap:35px;
    align-items:start;
    padding-top:23px
  }
  .location-city,.location h3,.location address,.directions {
    grid-column:1
  }
  .location .contact-list {
    grid-column:2;
    grid-row:1 / 5;
    margin:0
  }
  .location .contact-note {
    grid-column:2;
    grid-row:3 / 5
  }
  .location h3 {
    min-height:0
  }
  .location address {
    min-height:0;
    margin-top:10px
  }
  .location .directions {
    justify-self:start
  }
  .footer-grid {
    grid-template-columns:1fr 1fr;
    gap:36px
  }
  .footer-mission>p {
    max-width:280px
  }
}

@media(max-width:600px) {
  .container {
    width:calc(100% - 40px)
  }
  .topbar-inner {
    justify-content:center;
    min-height:29px;
    font-size:10px
  }
  .topbar-inner div {
    display:none
  }
  .header-inner {
    min-height:76px;
    gap:10px;
    padding-block:14px
  }
  .brand {
    width:143px
  }
  .header-cta {
    font-size:10px;
    padding:9px 11px;
    min-height:40px;
    gap:10px
  }
  .header-cta span {
    display:none
  }
  .menu-toggle:not([hidden]) {
    padding:8px;
    min-height:40px;
    font-size:10px
  }
  .hero {
    padding:40px 0 42px
  }
  .hero-grid {
    grid-template-columns:1fr;
    gap:34px
  }
  .eyebrow {
    font-size:9px;
    margin-bottom:20px;
    letter-spacing:.14em
  }
  .hero h1 {
    font-size:46px;
    line-height:1.13
  }
  .hero h1 br:last-child {
    display:none
  }
  .hero-description {
    font-size:13px;
    margin-top:23px;
    max-width:340px
  }
  .hero-actions {
    gap:20px;
    margin-top:25px
  }
  .hero-actions .button {
    font-size:12px;
    padding-inline:17px;
    gap:20px
  }
  .hero-actions .text-link {
    font-size:11px;
    gap:8px
  }
  .hero-note {
    display:none
  }
  .hero-images {
    max-width:440px;
    width:100%;
    padding-right:22px;
    padding-bottom:95px
  }
  .hero-primary img {
    height:260px
  }
  .hero-secondary {
    width:54%
  }
  .hero-secondary img {
    height:135px
  }
  .hero-images figcaption {
    font-size:9px
  }
  .section {
    padding-block:52px
  }
  h2 {
    font-size:35px
  }
  .pharmacy-grid {
    grid-template-columns:1fr;
    gap:32px
  }
  .pharmacy .section-copy {
    grid-row:1
  }
  .pharmacy-gallery {
    gap:13px;
    max-width:470px
  }
  .pharmacy-gallery figure:nth-child(2) {
    padding-top:26px
  }
  .pharmacy-gallery figcaption {
    font-size:9px
  }
  .section-copy>p:not(.eyebrow) {
    font-size:13px;
    margin-top:19px
  }
  .orthopedics-grid {
    grid-template-columns:1fr;
    gap:32px
  }
  .product-list>div {
    padding-block:20px
  }
  .product-list dt {
    font-size:23px
  }
  .product-list dd {
    font-size:12px
  }
  .button-orange {
    margin-top:24px
  }
  .quote-form {
    padding:22px 18px
  }
  .form-row {
    grid-template-columns:1fr;
    gap:16px
  }
  .field input,.field select {
    font-size:16px;
    padding-inline:10px
  }
  .field select {
    font-size:14px
  }
  .city-options {
    grid-template-columns:1fr 1.35fr;
    gap:8px
  }
  .city-options label {
    font-size:11px;
    padding-inline:8px
  }
  .section-heading {
    display:block;
    margin-bottom:32px
  }
  .section-heading>p {
    margin-top:18px;
    font-size:11px
  }
  .locations-grid {
    gap:30px
  }
  .location {
    display:flex;
    gap:0
  }
  .location-city {
    font-size:25px
  }
  .location h3 {
    margin-top:10px
  }
  .location address {
    font-size:12px;
    margin-top:14px
  }
  .location .contact-list {
    margin-top:22px
  }
  .contact-list>div {
    margin-bottom:13px
  }
  .contact-list dt {
    font-size:11px
  }
  .contact-list dd a {
    font-size:14px
  }
  .location .contact-note {
    font-size:11px
  }
  .site-footer {
    padding-top:40px
  }
  .footer-grid {
    grid-template-columns:1fr;
    gap:28px
  }
  .footer-mission>p {
    max-width:310px
  }
  .footer-grid h2 {
    margin-bottom:12px
  }
  .footer-grid p {
    margin-top:7px
  }
  .footer-mission img {
    width:173px;
    margin-bottom:14px
  }
  .footer-grid {
    font-size:12px
  }
  .footer-label,.business-details a {
    font-size:11px
  }
  .footer-social {
    gap:5px
  }
  .business-details {
    margin-top:15px
  }
  .footer-bottom {
    grid-template-columns:1fr;
    gap:15px
  }
  .footer-bottom details {
    justify-self:start
  }
  .footer-bottom summary {
    text-align:left
  }
  .footer-bottom {
    font-size:11px
  }
}

@media(max-width:370px) {
  .container {
    width:calc(100% - 32px)
  }
  .brand {
    width:126px
  }
  .header-cta {
    padding-inline:8px
  }
  .menu-toggle:not([hidden]) {
    font-size:0;
    gap:0
  }
  .menu-toggle span {
    font-size:15px
  }
  .hero h1 {
    font-size:40px
  }
  .hero-actions {
    gap:16px
  }
  .hero-primary img {
    height:230px
  }
  .hero-secondary img {
    height:125px
  }
  .city-options {
    grid-template-columns:1fr
  }
  .field select {
    font-size:13px
  }
}

@media(max-width:600px) {
  .header-inner {
    flex-wrap:wrap
  }
  .brand {
    width:130px
  }
  .menu-toggle:not([hidden]) {
    width:34px;
    justify-content:center;
    font-size:0;
    gap:0
  }
  .menu-toggle span {
    font-size:15px
  }
}

@media(max-width:370px) {
  .header-cta {
    display:none
  }
  .menu-toggle:not([hidden]) {
    margin-left:auto
  }
  .brand {
    width:143px
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto
  }
  * {
    transition:none!important
  }
}
