:root {
  --forest: #123f36;
  --forest-deep: #0b2d27;
  --emerald: #0f7d68;
  --emerald-bright: #169a7e;
  --mint: #d9ebe5;
  --ivory: #f7f3eb;
  --sand: #e9e0d3;
  --paper: #fffdf9;
  --ink: #162a26;
  --muted: #62706c;
  --line: rgba(18, 63, 54, 0.17);
  --white: #ffffff;
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 44px;
  --shadow: 0 26px 70px rgba(11, 45, 39, 0.12);
  --container: 1180px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  object-fit: cover;
}


button,
a {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

p,
h1,
h2,
h3,
h4,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3rem, 5.45vw, 5.45rem);
  font-weight: 600;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4.4vw, 4.4rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

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

.section {
  padding-block: clamp(84px, 10vw, 150px);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--forest-deep);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #f2b84b;
  outline-offset: 4px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
  color: var(--emerald);
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

.eyebrow.light {
  color: #b9e3d8;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  color: var(--white);
  background: var(--forest);
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--emerald);
  background: var(--emerald);
}



/* Símbolo oficial do WhatsApp inserido como SVG inline para herdar a cor de cada CTA. */
.whatsapp-icon {
  display: block;
  flex: 0 0 auto;
  width: 1.25em;
  height: 1.25em;
  fill: currentColor;
}

.specialty-item a[href*="wa.me"],
.contact-block a[href*="wa.me"] {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.specialty-item .whatsapp-icon,
.contact-block .whatsapp-icon {
  width: 1em;
  height: 1em;
}

.whatsapp-float .whatsapp-icon {
  width: 27px;
  height: 27px;
}

.button-small {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 0.8rem;
}

.button-light {
  border-color: var(--white);
  color: var(--forest-deep);
  background: var(--white);
}

.button-light:hover {
  border-color: var(--mint);
  color: var(--forest-deep);
  background: var(--mint);
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: transparent;
}

.button-ghost-light:hover {
  border-color: var(--white);
  color: var(--forest-deep);
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, 3px);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(18, 63, 54, 0.09);
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: block;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: 68px;
  height: 68px;
  border-radius: 17px;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(18, 63, 54, 0.16);
}


.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav > a:not(.button) {
  position: relative;
  font-family: "Manrope", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--emerald);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle,
.nav-top-mobile,
.menu-backdrop {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(76px, 8vw, 125px) clamp(70px, 8vw, 118px);
  background: var(--ivory);
}

.hero::after {
  position: absolute;
  right: -160px;
  bottom: -230px;
  width: 490px;
  height: 490px;
  border: 1px solid rgba(18, 63, 54, 0.14);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: clamp(48px, 7vw, 95px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 670px;
  margin-bottom: 34px;
  color: #475955;
  font-size: clamp(1.13rem, 1.6vw, 1.32rem);
}

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

.hero-trust {
  display: grid;
  max-width: 660px;
  margin: 58px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.hero-trust li {
  display: grid;
  gap: 2px;
  padding-right: 20px;
}

.hero-trust li + li {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.hero-trust strong {
  color: var(--forest);
  font-family: "Manrope", sans-serif;
  font-size: 1.45rem;
}

.hero-trust span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-image-frame {
  position: absolute;
  inset: 15px 0 65px 45px;
  overflow: hidden;
  border-radius: 180px 20px 20px 20px;
  box-shadow: var(--shadow);
}

.hero-image-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgba(8, 35, 30, 0.2));
  pointer-events: none;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
}

.address-card {
  position: absolute;
  right: 28px;
  bottom: 17px;
  display: flex;
  min-width: 310px;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  border-radius: 18px;
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 18px 45px rgba(11, 45, 39, 0.26);
  font-size: 0.84rem;
  line-height: 1.4;
}

.address-number {
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  font-family: "Manrope", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.hero-stamp {
  position: absolute;
  top: 0;
  left: 0;
  width: 118px;
  height: 118px;
  overflow: hidden;
  border: 8px solid var(--ivory);
  border-radius: 32px;
  background: var(--forest);
  box-shadow: 0 16px 38px rgba(11, 45, 39, 0.2);
  transform: rotate(-5deg);
}

.hero-stamp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.intro-strip {
  color: var(--white);
  background: var(--forest-deep);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.strip-grid p {
  position: relative;
  margin: 0;
  padding: 25px 30px 25px 42px;
  color: #d7e7e2;
  font-family: "Manrope", sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
}

.strip-grid p::before {
  position: absolute;
  top: 50%;
  left: 20px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: #6fd2b8;
  transform: translateY(-50%);
}

.strip-grid p + p {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 46px 84px;
}

.about-heading {
  position: sticky;
  top: 130px;
}

.about-copy {
  max-width: 690px;
  padding-top: 46px;
}

.about-copy .lead {
  color: var(--forest);
  font-size: clamp(1.35rem, 2.1vw, 1.75rem);
  line-height: 1.45;
}

.about-copy p:not(.lead) {
  color: var(--muted);
}

.about-copy .text-link {
  margin-top: 14px;
}

.about-photo {
  position: relative;
  overflow: hidden;
  margin: 16px 0 0;
  border-radius: var(--radius-md);
  grid-column: 1 / -1;
}

.about-photo img {
  width: 100%;
  height: min(52vw, 590px);
  object-position: center 44%;
}

.about-photo figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--white);
  background: rgba(11, 45, 39, 0.87);
  font-size: 0.76rem;
}

.about-year {
  display: flex;
  margin-top: -12px;
  align-items: baseline;
  justify-content: space-between;
  color: #d5e5df;
  font-family: "Manrope", sans-serif;
  font-size: clamp(7rem, 22vw, 17.5rem);
  font-weight: 700;
  letter-spacing: -0.12em;
  line-height: 0.85;
  -webkit-text-stroke: 1.5px rgba(18, 63, 54, 0.34);
  grid-column: 1 / -1;
}

.specialties {
  color: var(--white);
  background: var(--forest);
}

.specialties-heading,
.team-heading,
.structure-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 70px;
  margin-bottom: clamp(48px, 7vw, 85px);
}

.specialties-heading h2 {
  max-width: 750px;
}

.specialties-heading > p {
  color: #c9dbd6;
}

.specialty-groups {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.specialty-group {
  display: grid;
  padding-block: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  grid-template-columns: 0.82fr 1.18fr;
  gap: 62px;
}

.specialty-group header {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
}

.specialty-group header > span {
  color: #7fcdb9;
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.specialty-group header p {
  margin-bottom: 8px;
  color: #9fc6bc;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.specialty-group header h3 {
  margin-bottom: 0;
}

.specialty-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 42px;
}

.specialty-item {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.specialty-item h4 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.specialty-item p {
  margin-bottom: 10px;
  color: #c8d9d4;
  font-size: 0.9rem;
  line-height: 1.55;
}

.specialty-item a {
  color: #b7e6da;
  font-size: 0.82rem;
  font-weight: 600;
}

.specialties-cta {
  display: flex;
  margin-top: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 27px 0 0;
}

.specialties-cta p {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
}

.team {
  background: var(--ivory);
}

.team-heading > p,
.structure-heading > p {
  color: var(--muted);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px 24px;
}

.professional-card {
  min-width: 0;
}

.professional-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 0.77;
  border-radius: 48px 48px 16px 16px;
  object-fit: cover;
  object-position: center top;
  background: var(--mint);
}

.professional-summary {
  padding: 20px 6px 0;
}

.professional-summary > p {
  margin-bottom: 7px;
  color: var(--emerald);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.professional-summary h3 {
  margin-bottom: 7px;
  font-size: 1.2rem;
  overflow-wrap: anywhere;
}

.professional-summary > span {
  display: block;
  min-height: 22px;
  color: var(--muted);
  font-size: 0.82rem;
}

.professional-summary details {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.professional-summary summary {
  cursor: pointer;
  color: var(--forest);
  font-size: 0.84rem;
  font-weight: 700;
}

.professional-summary details p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.radiology {
  color: var(--white);
  background: var(--emerald);
}

.radiology-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 180px 1.15fr 0.85fr;
  gap: 58px;
}

.radiology-grid h2 {
  margin-bottom: 0;
  font-size: clamp(2.3rem, 4.3vw, 4.1rem);
}

.radiology-copy p {
  color: #daf0eb;
}

.radiology-copy .button {
  margin-top: 12px;
}

.radiology-mark {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

.radiology-mark span {
  position: absolute;
  top: 5px;
  left: 48px;
  width: 54px;
  height: 62px;
  border-radius: 100% 100% 18% 18%;
  background: #c5eadf;
  transform-origin: 27px 70px;
}

.radiology-mark span:nth-child(2) {
  transform: rotate(120deg);
}

.radiology-mark span:nth-child(3) {
  transform: rotate(240deg);
}

.radiology-mark i {
  position: absolute;
  z-index: 2;
  top: 59px;
  left: 59px;
  width: 32px;
  height: 32px;
  border: 7px solid var(--emerald);
  border-radius: 50%;
  background: #c5eadf;
}

.structure {
  background: var(--paper);
}

.gallery {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 225px;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-sm);
  background: var(--mint);
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-tall {
  grid-row: span 2;
}

.gallery img {
  width: 100%;
  height: 100%;
  transition: transform 500ms ease;
}

.gallery figure:hover img {
  transform: scale(1.035);
}

.gallery figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(11, 45, 39, 0.82);
  font-size: 0.76rem;
}

.testimonials {
  background: var(--sand);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
}

.testimonials-heading {
  position: sticky;
  top: 132px;
  align-self: start;
}

.testimonials-heading > p:last-child {
  color: var(--muted);
}

.quote-stack {
  display: grid;
}

.quote-stack blockquote {
  margin: 0;
  padding: 38px 0;
  border-top: 1px solid rgba(18, 63, 54, 0.22);
}

.quote-stack blockquote:last-child {
  border-bottom: 1px solid rgba(18, 63, 54, 0.22);
}

.quote-stack blockquote p {
  margin-bottom: 22px;
  color: var(--forest);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.45rem, 2.6vw, 2.35rem);
  font-weight: 500;
  line-height: 1.35;
}

.quote-stack footer {
  font-size: 0.9rem;
  font-weight: 700;
}

.quote-stack footer span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 400;
}

.faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 56px 24px 0;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 19px;
  right: 0;
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "+";
  color: var(--forest);
  font-size: 1.35rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 760px;
  margin: 0;
  padding: 0 58px 24px 0;
  color: var(--muted);
}

.contact {
  padding-block: clamp(84px, 10vw, 135px) 0;
  color: var(--white);
  background: var(--forest-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 76px;
}

.contact-copy p:not(.eyebrow) {
  max-width: 650px;
  color: #c9dcd6;
  font-size: 1.05rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 35px;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 42px;
}

.contact-block {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-block > span {
  display: block;
  margin-bottom: 12px;
  color: #7fd7c0;
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-block p {
  margin-bottom: 12px;
  color: #d6e3df;
  font-size: 0.94rem;
}

.contact-block a {
  display: block;
  width: fit-content;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.map-wrap {
  overflow: hidden;
  min-height: 410px;
  margin-top: 70px;
  border-radius: 40px 40px 0 0;
  grid-column: 1 / -1;
  filter: saturate(0.7) contrast(1.05);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 460px;
}

.map-placeholder {
  display: grid;
  min-height: 460px;
  padding: 40px;
  place-content: center;
  justify-items: center;
  gap: 12px;
  color: var(--forest-deep);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(197, 234, 223, 0.88)),
    repeating-linear-gradient(45deg, transparent 0 44px, rgba(18, 63, 54, 0.08) 44px 46px);
  text-align: center;
}

.map-placeholder span {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--white);
  background: var(--emerald);
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.map-placeholder strong {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
}

.map-placeholder small {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  padding-block: 58px 34px;
  color: #d4e0dc;
  background: #071f1b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 0.6fr;
  gap: 50px;
}

.footer-brand .brand-lockup {
  display: inline-flex;
  margin-bottom: 18px;
}

.footer-logo {
  width: 92px;
  height: 92px;
  border-radius: 22px;
  object-fit: cover;
}


.footer-brand p {
  margin: 18px 0 0;
  color: #9fb4ae;
  font-size: 0.9rem;
}

.site-footer nav,
.footer-social {
  display: grid;
  align-content: start;
  gap: 9px;
}

.site-footer a {
  width: fit-content;
  color: #d4e0dc;
  font-size: 0.88rem;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  align-items: center;
  justify-content: space-between;
  grid-column: 1 / -1;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: #849b94;
  font-size: 0.75rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 5px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: var(--white);
  background: var(--emerald-bright);
  box-shadow: 0 14px 35px rgba(11, 45, 39, 0.28);
  transition: transform 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
}


@media (max-width: 1080px) {
  :root {
    --header-height: 78px;
  }

  .main-nav {
    gap: 16px;
  }

  .main-nav > a:not(.button) {
    font-size: 0.77rem;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 48px;
  }

  .hero-visual {
    min-height: 490px;
  }

  .hero-image-frame {
    inset: 20px 0 60px 30px;
  }

  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .radiology-grid {
    grid-template-columns: 130px 1fr 0.8fr;
    gap: 38px;
  }

  .radiology-mark {
    transform: scale(0.8);
    transform-origin: left center;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .menu-toggle {
    display: grid;
    width: 48px;
    height: 48px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 50%;
    place-content: center;
    gap: 5px;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--forest);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 1002;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: min(88vw, 430px);
    padding: 28px;
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
    color: var(--white);
    background: var(--forest-deep);
    box-shadow: -20px 0 70px rgba(0, 0, 0, 0.2);
    transform: translateX(105%);
    transition: transform 230ms ease;
    visibility: hidden;
  }

  .main-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-top-mobile {
    display: flex;
    margin-bottom: 34px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    align-items: center;
    justify-content: space-between;
    color: #a7c6be;
    font-family: "Manrope", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .nav-close {
    padding: 10px 0 10px 16px;
    border: 0;
    color: var(--white);
    background: transparent;
    cursor: pointer;
    font-size: 0.8rem;
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  .main-nav > a:not(.button) {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    color: var(--white);
    font-size: 1.12rem;
  }

  .main-nav .button {
    margin-top: auto;
    border-color: var(--white);
    color: var(--forest-deep);
    background: var(--white);
  }

  .menu-backdrop {
    position: fixed;
    z-index: 1001;
    inset: 0;
    display: block;
    background: rgba(7, 31, 27, 0.54);
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease;
  }

  .menu-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  .hero-grid,
  .about-grid,
  .specialties-heading,
  .team-heading,
  .structure-heading,
  .testimonials-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    min-height: 550px;
  }

  .hero-image-frame {
    inset: 20px 0 64px 48px;
  }

  .about-heading,
  .testimonials-heading {
    position: static;
  }

  .about-copy {
    padding-top: 0;
  }

  .specialties-heading,
  .team-heading,
  .structure-heading {
    gap: 20px;
  }

  .specialty-group {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .radiology-grid {
    grid-template-columns: 110px 1fr;
  }

  .radiology-copy {
    grid-column: 2;
  }

  .gallery {
    grid-auto-rows: 220px;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-large {
    grid-column: span 2;
  }

  .gallery-wide {
    grid-column: span 2;
  }

  .gallery-tall {
    grid-row: span 2;
  }

  .testimonials-grid,
  .faq-grid,
  .contact-grid {
    gap: 48px;
  }

  .map-wrap {
    margin-top: 12px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .footer-social {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 17px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding-block: 76px;
  }

  .hero {
    padding-top: 54px;
  }

  h1 {
    font-size: clamp(2.75rem, 14.3vw, 4rem);
  }

  h2 {
    font-size: clamp(2.1rem, 10.5vw, 3.15rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    margin-top: 42px;
    grid-template-columns: 1fr;
  }

  .hero-trust li {
    display: grid;
    padding: 12px 0;
    grid-template-columns: 48px 1fr;
    align-items: center;
  }

  .hero-trust li + li {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-visual {
    min-height: 440px;
  }

  .hero-image-frame {
    inset: 26px 0 60px 18px;
    border-radius: 110px 14px 14px 14px;
  }

  .hero-stamp {
    width: 92px;
    height: 92px;
    border-width: 6px;
  }

  .hero-stamp span {
    top: 13px;
    left: 13px;
    font-size: 1.2rem;
  }

  .hero-stamp small {
    right: 12px;
    bottom: 13px;
  }

  .address-card {
    right: 8px;
    bottom: 12px;
    min-width: 0;
    max-width: calc(100% - 28px);
    gap: 14px;
    padding: 14px 17px;
  }

  .address-number {
    padding-right: 14px;
    font-size: 1.35rem;
  }

  .strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .strip-grid p {
    padding: 18px 15px 18px 28px;
    font-size: 0.72rem;
  }

  .strip-grid p::before {
    left: 11px;
  }

  .strip-grid p:nth-child(3) {
    border-left: 0;
  }

  .strip-grid p:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .about-grid {
    gap: 30px;
  }

  .about-photo img {
    height: 64vw;
  }

  .about-year {
    margin-top: 0;
    font-size: 29vw;
  }

  .specialty-list {
    grid-template-columns: 1fr;
  }

  .specialty-group header {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }

  .specialties-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 14px;
  }

  .professional-summary {
    padding-top: 15px;
  }

  .professional-summary > p {
    min-height: 40px;
    font-size: 0.68rem;
  }

  .professional-summary h3 {
    font-size: 1rem;
  }

  .professional-summary > span {
    font-size: 0.72rem;
  }

  .professional-summary details p,
  .professional-summary summary {
    font-size: 0.77rem;
  }

  .radiology-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .radiology-mark {
    width: 120px;
    height: 120px;
    transform: scale(0.7);
    transform-origin: left top;
  }

  .radiology-copy {
    grid-column: 1;
  }

  .gallery {
    grid-auto-rows: 190px;
    grid-template-columns: 1fr;
  }

  .gallery-large,
  .gallery-wide,
  .gallery-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .quote-stack blockquote p {
    font-size: 1.4rem;
  }

  .faq-list summary {
    padding-right: 48px;
    font-size: 0.95rem;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .map-wrap {
    min-height: 350px;
    border-radius: 28px 28px 0 0;
  }

  .map-wrap iframe {
    height: 370px;
  }

  .map-placeholder {
    min-height: 370px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .footer-brand,
  .footer-bottom {
    grid-column: 1 / -1;
  }

  .footer-social {
    grid-column: 2;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 390px) {

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .professional-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    align-items: start;
  }

  .professional-card img {
    border-radius: 30px 30px 12px 12px;
  }

  .professional-summary {
    padding-top: 8px;
  }

  .professional-summary > p {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}



@media (max-width: 560px) {
  .brand-logo {
    width: 58px;
    height: 58px;
    border-radius: 15px;
  }

  .footer-logo {
    width: 82px;
    height: 82px;
  }
}
