:root {
  --primary: #0d2d63;
  --primary-2: #143f86;
  --secondary: #6bcdea;
  --secondary-2: #54d3ea;
  --gold: #f0d31f;
  --whatsapp: #25d366;
  --text: #203047;
  --muted: #5b6880;
  --surface: #f3f4f6;
  --surface-2: #e7e7ea;
  --shadow: 0 14px 34px rgba(9, 28, 58, 0.16);
  --shadow-soft: 0 8px 18px rgba(9, 28, 58, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
}

@font-face {
  font-family: "Myriad Pro";
  src:
    url("./fonts/MyriadPro-Regular.woff2") format("woff2"),
    url("./fonts/MyriadPro-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Myriad Pro";
  src:
    url("./fonts/MyriadPro-Semibold.woff2") format("woff2"),
    url("./fonts/MyriadPro-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Myriad Pro";
  src:
    url("./fonts/MyriadPro-Bold.woff2") format("woff2"),
    url("./fonts/MyriadPro-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Myriad Pro", "Montserrat", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
}

a {
  transition: 0.25s ease;
}

img {
  max-width: 100%;
  display: block;
}

.container-site {
  width: min(100%, 1340px);
  margin: 0 auto;
}

.section-block {
  padding: 0;
}

.section-block--top-gap {
  margin-top: 28px;
}

header {
  height: 110px;
  display: flex;
  align-items: center;
}

.main-header {
  height: 90px; /* altura fixa do header */
  display: flex;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
}

.brand-logo img {
  height: 140px;
  width: auto;
  position: relative;
  top: 0px; /* ajusta posição */
}


.topbar {
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  padding: 7px 0;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 18px;
}

.top-social,
.top-phones {
  display: flex;
  align-items: center;
  gap: 9px;
}

.top-social img {
  width: 24px;
}

.top-phones a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

.top-phones a:hover {
  color: #fff;
}

.main-header {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 18px;
  min-height: 72px;
  padding: 0 18px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  position: relative;
  color: var(--primary);
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  padding: 5px 12px;
}

.main-nav a:not(:last-child) {
  border-right: 2px solid var(--secondary);
}

.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -10px;
  height: 4px;
  background: var(--secondary);
}

.hero-section,
.specialties-section {
  padding: 0;
}

.hero-box,
.specialties-box,
.faq-panel,
.exams-hero {
  position: relative;
  overflow: hidden;
}

.hero-box {
  height: 464px;
  background: url("../img/topo.jpg") center/cover no-repeat;
}

.hero-layer,
.specialties-layer {
  position: absolute;
  inset: 0;
}

.hero-copy {
  position: absolute;
  top: 95px;
  left: 143px;
  width: 430px;
  color: #fff;
}

.hero-mini,
.hero-title,
.specialties-title-bar,
.simple-title-divider .pill,
.doctor-role,
.cta-button,
.exams-title,
.exams-subtitle,
.exam-tag,
.location-copy h3,
.footer-menu a {
  font-family: "Montserrat", sans-serif;
}

.hero-mini {
  display: block;
  margin-bottom: 8px;
  font-size: 32px;
  line-height: 1.05;
  font-weight: 700;
}

.hero-title {
  display: block;
  margin-bottom: 20px;
  font-size: 100px;
  line-height: 0.92;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.hero-description {
  position: absolute;
  left: 337px;
  bottom: 50px;
  width: 405px;
  color: var(--primary);
  font-size: 16px;
  line-height: 1.08;
  font-weight: 600;
}

.specialties-box {
  height: 500px;
  margin-top: 18px;
  background: url("../img/base atendimento especializado.jpg") center/cover no-repeat;
}

.specialties-title-bar {
  position: absolute;
  top: 18px;
  right: 0;
  width: 692px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px 0 0 18px;
  background: var(--primary);
  color: #fff;
  font-size: 29px;
  font-weight: 500;
  text-transform: uppercase;
}

.specialties-title-bar strong {
  margin-left: 8px;
  color: var(--secondary-2);
  font-weight: 800;
}

.specialties-left-box,
.specialties-right-box {
  position: absolute;
  border-radius: 22px;
  backdrop-filter: blur(1px);
}

.specialties-left-box {
  top: 112px;
  left: 538px;
  width: 504px;
  min-height: 190px;
  padding: 22px 28px;
  color: #fff;
  background: linear-gradient(
    to right,
    rgba(23, 46, 93, 0.88) 0%,
    rgba(23, 46, 93, 0.64) 42%,
    rgba(23, 46, 93, 0.26) 72%,
    rgba(23, 46, 93, 0) 100%
  );
}

.specialties-right-box {
  top: 188px;
  right: 80px;
  width: 364px;
  min-height: 184px;
  padding: 24px 26px;
  color: #13213d;
  background: linear-gradient(
    to right,
    rgba(87, 214, 239, 0.82) 0%,
    rgba(87, 214, 239, 0.54) 45%,
    rgba(87, 214, 239, 0.18) 72%,
    rgba(87, 214, 239, 0) 100%
  );
}

.specialties-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.specialties-list li {
  position: relative;
  margin-bottom: 6px;
  padding-left: 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
}

.specialties-list li::before {
  content: "▶";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 10px;
  color: var(--secondary-2);
}

.specialties-list .mixed {
  text-transform: none;
}

.specialties-list--dark li::before {
  color: #fff;
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.section-cta--hero {
  position: absolute;
  left: 572px;
  bottom: 58px;
  justify-content: flex-start;
}

.section-cta--center {
  margin: 26px 0 0;
}

.section-cta--small-gap {
  margin-top: 18px;
}

.section-cta--faq {
  position: absolute;
  left: 630px;
  bottom: 30px;
  justify-content: flex-start;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--primary-2);
  color: #fff200;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-soft);
}

.cta-whats {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--whatsapp);
  color: #fff;
  font-size: 22px;
  box-shadow: var(--shadow-soft);
}

.section-cta--hero .cta-whats {
  width: 46px;
  height: 46px;
  font-size: 28px;
}

.simple-title-divider {
  display: flex;
  align-items: center;
  height: 52px;
  margin: 18px 0 0;
}

.simple-title-divider--spaced {
  margin-top: 28px;
}

.simple-title-divider--compact {
  margin-top: 8px;
  margin-bottom: 14px;
}

.simple-title-divider::after {
  content: "";
  flex: 1;
  height: 6px;
  margin-left: -1px;
  background: var(--primary);
}

.simple-title-divider .left-accent {
  width: 26px;
  height: 100%;
  margin-right: -2px;
  background: linear-gradient(
    120deg,
    transparent 0 35%,
    var(--secondary) 35% 100%
  );
}

.simple-title-divider .pill {
  border-radius: 0 18px 18px 0;
  background: var(--primary);
  color: #fff;
  padding: 9px 46px 9px 48px;
  font-size: 22px;
  text-transform: uppercase;
  line-height: 1;
}

.simple-title-divider .pill strong {
  font-weight: 800;
}

.simple-title-divider .pill .light {
  font-weight: 400;
}

.about-blue-panel {
  position: relative;
  height: 230px;
  margin-top: 18px;
}
.panel-shape {
  position: absolute;
  inset: 0 18px;
  background-image: url("../img/path9.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
}

.panel-text {
  position: absolute;
  top: 56px;
  left: 120px;
  right: 120px;
  color: #fff;
  text-align: center;
  font-size: 18px;
  line-height: 1.22;
  font-weight: 400;
}

.doctor-card {
  position: relative;
  height: 392px;
  margin-top: 22px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.doctor-card--fabio {
  background-image: url("../img/imagem_melhorada.jpg");
}

.doctor-card--gabriel {
  background-image: url("../img/Gabriel1.jpg");
}

.doctor-card--fabio,
.doctor-card--gabriel {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 440px;
}

.doctor-content {
  position: absolute;
  inset: 0;
}

.doctor-name-block1 {
  position: absolute;
  top: 16px;
  left: 395px;
  color: var(--primary);
}
.doctor-name-block {
  position: absolute;
  top: 28px;
  left: 395px;
  color: var(--primary);
}

.doctor-line-1 {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.doctor-prefix {
  font-family: "Myriad Pro", "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 400;
}

.doctor-first,
.doctor-last {
  font-family: "Montserrat", sans-serif;
  font-size: 60px;
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.doctor-last {
  margin-top: -8px;
  margin-left: 90px;
}

.doctor-role {
  position: absolute;
  top: 143px;
  left: 579px;
  color: var(--primary);
  text-align: center;
  font-size: 27px;
  line-height: 1;
}

.doctor-role small {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
}

.doctor-bullets1 {
  position: absolute;
  top: 226px;
  left: 477px;
  width: 382px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--primary);
  font-size: 12px;
  line-height: 1.08;
  font-weight: 600;
}

.doctor-bullets {
  position: absolute;
  top: 217px;
  left: 429px;
  width: 391px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--primary);
  font-size: 12px;
  line-height: 1.08;
  font-weight: 600;
}

.doctor-bullets li {
  position: relative;
  margin-bottom: 4px;
  padding-left: 10px;
}

.doctor-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
}
.doctor-bullets1 li {
  position: relative;
  margin-bottom: 4px;
  padding-left: 10px;
}

.doctor-bullets1 li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
}
.clinic-intro {
  max-width: 900px;
  margin: 14px auto 0;
  color: var(--primary);
  text-align: center;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
}

.clinic-gallery {
  margin-top: 18px;
}

.clinic-gallery-desktop {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 6px;
}

.clinic-main,
.clinic-thumbs {
  min-width: 0;
}

.clinic-main {
  flex: 0 0 45%;
}

.clinic-thumbs {
  flex: 0 0 calc(50% - 6px);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-content: flex-start;
}

.clinic-main img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  display: block;
}

.thumb {
  width: calc(33.333% - 4px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0;
  cursor: pointer;
  border: 0;
  display: block;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.thumb:hover,
.thumb.active {
  opacity: 0.9;
  transform: scale(0.98);
}

.clinic-mobile-slider {
  display: none;
  position: relative;
  margin-top: 18px;
}

.clinic-slider-track-wrap {
  overflow: hidden;
  width: 100%;
}

.clinic-slider-track {
  display: flex;
  transition: transform 0.35s ease;
}

.clinic-slide {
  min-width: 100%;
  flex: 0 0 100%;
}

.clinic-slide img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.clinic-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: rgba(13, 45, 99, 0.92);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  box-shadow: var(--shadow-soft);
}

.clinic-slider-prev {
  left: 10px;
}

.clinic-slider-next {
  right: 10px;
}

.clinic-slider-bullets {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.clinic-bullet {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(13, 45, 99, 0.25);
}

.clinic-bullet.active {
  background: var(--primary);
}

.exams-showcase {
  position: relative;
  margin: 0 26px;
}

.exams-hero {
  height: 402px;
  padding: 34px 36px;
  border-radius: 26px;
  background: url("../img/exame-fundo.jpg") center/cover no-repeat;
}

.exams-title {
  margin: 0;
  padding-left: 400px;
  color: #fff;
  font-size: 50px;
  line-height: 1;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.exams-subtitle {
  margin: 6px 0 0 auto;
  max-width: 360px;
  color: var(--primary);
  text-align: right;
  font-size: 22px;
  line-height: 0.95;
  font-weight: 900;
}

.exam-tags {
  position: absolute;
  top: 150px;
  left: 510px;
}

.exams-title-image {
  max-width: 100%;
  height: auto;
  display: block;
  width: 570px;
  position: absolute;
  left: 489px;
}

.exam-tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 152px;
  padding: 7px 18px;
  border-radius: 12px;
  font-size: 25px;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.decor-corners {
  position: relative;
}

.decor-corners::before,
.decor-corners::after,
.decor-corners--hero .exams-hero::before,
.decor-corners--hero .exams-hero::after,
.decor-corners--list::before,
.decor-corners--list::after {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  border: 4px solid #d3d3d3;
  border-radius: 6px;
  pointer-events: none;
}

.decor-corners--hero::before {
  left: -14px;
  bottom: -20px;
}
.decor-corners--hero::after {
  left: 18px;
  bottom: -46px;
}
.decor-corners--hero .exams-hero::before {
  right: -6px;
  top: 10px;
}
.decor-corners--hero .exams-hero::after {
  right: 26px;
  top: 28px;
}
.decor-corners--list::before {
  left: 390px;
  top: 114px;
}
.decor-corners--list::after {
  left: 407px;
  top: 143px;
}
.exam-cards {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 40px 120px 0;
}

.exam-card {
  display: flex;
  align-items: center;
  min-height: 220px;
}

.exam-card__image {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
}

.exam-card__line {
  flex: 0 0 80px;
  width: 80px;
  height: 3px;
  background: #2b7a8b;
}

.exam-card__content {
  flex: 1;
  max-width: 650px;
}

.exam-card__content h4 {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 900;
}

.exam-card__bubble {
  position: relative;
  padding: 28px;
  border-radius: 12px;
  background: var(--surface-2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.exam-card__bubble::before {
  content: "";
  position: absolute;
  top: 50px;
  left: -20px;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-right: 20px solid var(--surface-2);
}

.exam-card__bubble p {
  font-size: 18px;
  line-height: 1.4;
}
.faq-panel {
  min-height: 470px;
  margin: 0 26px;
  border-radius: 28px;
  background: url("../img/duvidas - fundo.jpg") center/cover no-repeat;
  overflow: visible;
}

.faq-heading {
  position: absolute;
  top: 38px;
  left: 630px;
  color: var(--primary);
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  line-height: 0.92;
  font-weight: 400;
}

.faq-accordion {
  position: absolute;
  top: 96px;
  left: 630px;
  width: 465px;
}

.faq-item {
  margin-bottom: 8px;
  border: none;
  background: transparent;
}

.faq-button {
  padding: 7px 18px;
  border-radius: 999px !important;
  background: var(--primary) !important;
  color: #fff !important;
  box-shadow: none !important;
  font-size: 14px;
  font-weight: 700;
}

.faq-button::after {
  display: none;
}

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  border-radius: 50%;
  flex: 0 0 18px;
  font-size: 12px;
  font-weight: 900;
}

.faq-body {
  padding: 10px 16px 2px 36px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
}
.location-section {
  margin-top: 60px;
}

.location-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 18px;
}

.location-copy {
  flex: 1;
  display: flex;
  align-items: center;
}

.location-copy img {
  width: 100%;
  display: block;
}

.location-card {
  display: flex;
  flex-direction: column;
}

.location-card--photo {
  flex: 0 0 28%;
}

.location-card--map {
  flex: 0 0 33%;
}

.location-copy {
  flex: 0 0 33%;
}

.location-card__media,
.location-card--photo img,
.location-card--map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  object-fit: cover;
  border-radius: 18px;
}

.location-card--map iframe {
  border: 0;
}

.location-card--photo p {
  text-align: center;
  width: 100%;
  margin: 10px 0 0;
  color: var(--primary);
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 700;
}

.instagram-section {
  margin-top: 24px;
}

.instagram-banner {
  width: 100%;
  border-radius: 24px;
}

footer a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

footer a:hover {
  color: var(--gold);
}

.main-footer {
  margin-top: 20px;
  border-top: 2px solid var(--secondary);
  background: #1f1f1f;
  color: #fff;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 28px 20px;
}

.footer-col {
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 28px;
}

.footer-col:not(:last-child) {
  border-right: 2px solid var(--secondary);
}

.footer-logo {
  width: 150px;
  margin-bottom: 12px;
}

.footer-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-cta img {
  width: 150px;
}

.footer-cta span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-menu a {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.4;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-item + .footer-item {
  margin-top: 10px;
}

.footer-item img {
  width: 22px;
}

.footer-item a {
  font-size: 12px;
  font-weight: 600;
}

.footer-bottom {
  padding: 10px;
  background: #111;
  text-align: center;
  font-size: 11px;
}

@media (max-width: 1200px) {
  .container-site {
    width: calc(100% - 30px);
  }

  .hero-copy {
    left: 80px;
  }

  .hero-title {
    font-size: 82px;
  }

  .hero-description {
    left: 330px;
    bottom: 36px;
  }

  .specialties-left-box {
    left: 430px;
    width: 470px;
  }

  .specialties-right-box {
    right: 30px;
  }

  .section-cta--hero {
    left: 360px;
  }

  .doctor-name-block {
    left: 330px;
  }

  .doctor-role {
    left: 420px;
  }

  .doctor-bullets {
    left: 410px;
  }

  .exams-title {
    padding-left: 300px;
    font-size: 42px;
  }

  .exam-tag--orange {
    left: 470px;
  }
  .exam-tag--green {
    left: 600px;
  }
  .exam-tag--dark {
    left: 450px;
  }
  .exam-tag--violet {
    left: 710px;
  }
  .exam-tag--blue {
    left: 610px;
  }

  .faq-heading,
  .faq-accordion,
  .section-cta--faq {
    left: 540px;
  }

  .location-copy h3 {
    font-size: 46px;
  }
}

@media (max-width: 991px) {
  .topbar__inner,
  .header__inner,
  .location-grid,
  .footer-content {
    flex-direction: column;
    display: flex;
  }

  .header__inner {
    padding: 16px 18px;
  }

  .main-nav {
    justify-content: center;
  }

  .hero-box,
  .specialties-box,
  .doctor-card,
  .faq-panel,
  .exams-hero {
    height: auto;
    min-height: initial;
  }

  .hero-box {
    padding: 60px 28px 180px;
    background-position: 62% center;
  }

  .hero-copy,
  .hero-description,
  .specialties-title-bar,
  .specialties-left-box,
  .specialties-right-box,
  .section-cta--hero,
  .doctor-name-block,
  .doctor-role,
  .doctor-bullets,
  .faq-heading,
  .faq-accordion,
  .section-cta--faq {
    position: static;
    width: auto;
  }

  .hero-copy,
  .hero-description,
  .specialties-left-box,
  .specialties-right-box,
  .doctor-role,
  .doctor-bullets,
  .faq-heading,
  .faq-accordion {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-title {
    font-size: 72px;
  }

  .hero-description {
    max-width: 460px;
    margin-top: 18px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.82);
    border-radius: 12px;
  }

  .specialties-box {
    padding: 18px 20px 24px;
  }

  .specialties-title-bar {
    margin: 0 0 20px auto;
    max-width: 100%;
    border-radius: 18px;
  }

  .specialties-left-box,
  .specialties-right-box {
    min-height: initial;
    margin-bottom: 16px;
  }

  .section-cta--hero {
    margin-top: 8px;
    justify-content: center;
  }

  .about-blue-panel {
    height: auto;
    min-height: 240px;
  }

  .panel-text {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    padding: 54px 40px 32px;
  }

  .doctor-card {
    min-height: 390px;
    background-position: 32% center;
  }

  .doctor-name-block {
    padding: 24px 24px 0 290px;
  }

  .doctor-role {
    padding: 0 24px 0 290px;
    margin-top: 78px;
    text-align: left;
  }

  .doctor-bullets {
    width: auto;
    padding: 0 24px 24px 290px;
    margin-top: 20px;
  }

  .exams-showcase,
  .exam-cards,
  .faq-panel {
    margin-left: 0;
    margin-right: 0;
  }

  .exams-hero {
    padding: 30px 24px 220px;
  }

  .exams-title {
    padding-left: 0;
    font-size: 38px;
  }

  .exams-subtitle {
    margin-top: 16px;
    text-align: left;
  }

  /* .exam-tags {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
  } */

  .exam-tag {
    position: static;
    min-width: auto;
    font-size: 18px;
  }

  .exam-cards {
    gap: 18px;
  }

  .exam-card {
    align-items: stretch;
  }

  .faq-panel {
    padding: 28px 24px 90px;
  }

  .faq-heading {
    margin-bottom: 20px;
    font-size: 26px;
  }

  .faq-accordion {
    max-width: 520px;
  }

  .section-cta--faq {
    margin-top: 24px;
    justify-content: center;
  }

  .location-grid {
    gap: 18px;
  }

  .location-copy h3 {
    font-size: 42px;
    text-align: center;
  }

  /* .footer-col {
    width: 100%;
    align-items: center;
    text-align: center;
    padding: 16px 0;
  } */

  .footer-col:not(:last-child) {
    border-right: none;
    border-bottom: 2px solid var(--secondary);
  }
}

@media (max-width: 767px) {
  .topbar__inner {
    align-items: flex-start;
  }

  .main-nav a {
    padding: 8px 10px;
    font-size: 10px;
  }

  .hero-box {
    padding: 42px 18px 130px;
  }

  .hero-mini {
    font-size: 23px;
  }

  .hero-title {
    font-size: 52px;
  }

  .specialties-title-bar {
    height: auto;
    padding: 14px 20px;
    font-size: 22px;
    text-align: center;
  }

  .simple-title-divider .pill {
    padding: 9px 22px 9px 24px;
    font-size: 18px;
  }

  .panel-accent {
    left: 40px;
    width: 130px;
  }

  .panel-text {
    padding: 46px 24px 28px;
    font-size: 15px;
  }

  .doctor-card--fabio {
    background-image: url("../img/base-quem-somos.png");
  }

  .doctor-card--gabriel {
    background-image: url("../img/base-quem-somos.png");
  }

  .doctor-card {
    min-height: 520px;
    background-position: 20% top;
  }

  .doctor-name-block,
  .doctor-role,
  .doctor-bullets {
    padding-left: 24px;
  }

  .doctor-name-block {
    padding-top: 250px;
  }

  .doctor-prefix {
    font-size: 24px;
  }

  .doctor-first,
  .doctor-last {
    font-size: 42px;
  }

  .doctor-last {
    margin-left: 64px;
  }

  .doctor-role {
    margin-top: 10px;
    font-size: 20px;
  }

  .doctor-bullets {
    margin-top: 16px;
    font-size: 12px;
  }

  .clinic-intro {
    font-size: 16px;
  }

  .clinic-gallery-desktop {
    display: none;
  }

  .clinic-mobile-slider {
    display: block;
  }

  .exam-card {
    flex-direction: column;
    gap: 10px;
  }

  .exam-card__line {
    display: none;
  }

  .exam-card__content {
    max-width: 100%;
  }

  .exam-card__bubble::before {
    top: -14px;
    left: calc(50% - 12px);
    border-right: 12px solid transparent;
    border-left: 12px solid transparent;
    border-bottom: 14px solid var(--surface-2);
    border-top: none;
  }

  .faq-heading {
    font-size: 22px;
  }

  .faq-button {
    font-size: 13px;
  }

  .location-copy h3 {
    font-size: 34px;
  }

  .location-card--photo p {
    font-size: 17px;
    text-align: center;
  }
}

.cta-imagem img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  margin-right: 263px;
  margin-top: 20px;
}

/* ===== CTA FAQ VIRANDO IMAGEM ===== */

.section-cta--faq {
  position: absolute;
  left: 630px;
  bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* botão vira imagem */
.section-cta--faq .cta-button {
  display: block;
  width: 280px;
  height: 55px;

  background: url("../img/wpp-removebg-preview.png") center/contain no-repeat;

  /* esconde texto */
  font-size: 0;
  color: transparent;
  text-indent: -9999px;

  border: none;
  box-shadow: none;
  padding: 0;
  min-height: auto;
}

/* remove bolinha do whatsapp */
.section-cta--faq .cta-whats {
  display: none !important;
}

/* =========================
   SECTION EXAMES
========================= */

.exames-section {
  position: relative;
  overflow: hidden;
}

.exames-container {
  position: relative;
  z-index: 2;
}

.exames-top-title {
  width: 530px;
  max-width: 100%;
  display: block;
}

/* =========================
   ELEMENTOS DECORATIVOS
========================= */

.exam-decor {
  position: absolute;
  width: 92px;
  overflow: visible;
  z-index: 10; /* acima do conteúdo */
  pointer-events: none;
}

/*
  Aqui usamos % em vez de px fixo.
  Assim eles acompanham melhor a largura da section.
*/

.exam-decor--1 {
  top: 57px;
  left: 83%;

  transform: translateX(-50%);
}

.exam-decor--2 {
  top: 411px;
  left: 17%;
  transform: translateX(-50%);
}

.exam-decor--3 {
  top: 928px;
  left: 31%;
  transform: translateX(-50%);
}

.exam-decor--4 {
  top: 696px;
  left: 45%;
  transform: translateX(-50%);
}

/* =========================
   CARDS
========================= */

.exam-cards--below-faq {
  margin-top: 28px;
}

.exam-card {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.exam-card__image {
  width: 249px;
  height: 210px;
  object-fit: cover;
  border-radius: 14px;
  background: #eee;
}

.exam-card__line {
  flex: 0 0 40px;
  width: 40px;
  height: 2px;
  background: #2b7a8b;
}

.exam-card__content {
  flex: 1;
  max-width: 420px;
}

.exam-card__content h4 {
  margin: 0 0 6px;
  color: #1453a5;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 21px;
  font-weight: 800;
  margin-right: -31px;
}

.exam-card__bubble {
  position: relative;
  padding: 16px;
  height: 140px;
  width: 470px;
  border-radius: 6px;
  background: var(--surface-2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.exam-card__bubble::before {
  content: "";
  position: absolute;
  top: 42px;
  left: -14px;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-right: 14px solid var(--surface-2);
}

.exam-card__bubble p {
  margin: 0;
  color: #16335e;
  text-align: center;
  font-size: 16px;
  line-height: 1.08;
  font-weight: 800;
  margin-top: 13px;
}

/* =========================
   TABLET / NOTEBOOK
========================= */

@media (max-width: 1470px) {
  .exam-decor {
    width: 78px;
  }

  .exam-decor--1 {
    left: 93%;
    top: 50px;
  }

  .exam-decor--2 {
    left: 7%;
    top: 423px;
  }

  .exam-decor--3 {
    left: 26%;
    top: 928px;
  }

  .exam-decor--4 {
    left: 43%;
    top: 698px;
  }
}

@media (max-width: 1100px) {
  .exam-decor {
    width: 68px;
  }

  .exam-decor--1 {
    left: 95%;
    top: 55px;
  }

  .exam-decor--2 {
    left: 5%;
    top: 433px;
  }

  .exam-decor--3 {
    left: 18%;
    top: 929px;
  }

  .exam-decor--4 {
    left: 40%;
    top: 697px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {
  .exam-card {
    flex-direction: column;
    gap: 10px;
  }

  .exam-card__line {
    display: none;
  }

  .exam-card__content {
    max-width: 100%;
  }

  .exam-card__content h4,
  .exam-card__bubble p {
    text-align: left;
  }

  .exam-card__bubble {
    width: 349px;
  }

  .exam-card__bubble::before {
    top: -14px;
    left: calc(50% - 12px);
    border-right: 12px solid transparent;
    border-left: 12px solid transparent;
    border-bottom: 14px solid var(--surface-2);
    border-top: none;
  }

  /* em mobile esses adornos costumam quebrar o layout */
  .exam-decor {
    width: 52px;
  }

  .exam-decor--1 {
    top: 40px;
    left: 90%;
  }

  .exam-decor--2 {
    top: 470px;
    left: 12%;
  }

  .exam-decor--3 {
    top: 1030px;
    left: 22%;
  }

  .exam-decor--4 {
    top: 760px;
    left: 72%;
  }
}

#contato {
  position: relative;
  overflow: visible;
}

.section-cta--faq {
  position: absolute;
  left: 78%;
  bottom: -31px;
  transform: translateX(-50%);
  overflow: visible;
  z-index: 31;
}

#clinica {
  position: relative;
  overflow: hidden;
}

.clinic-wrap {
  position: relative;
}
.path1,
.path2 {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.path1 {
  right: 202px;
  bottom: 208px;
  width: 100px;
}

.path2 {
  left: 162px;
  top: 140px;
  width: 90px;
}

.exames-cta {
  display: flex;
  justify-content: center;
}

.exames-cta img {
  width: 300px;
}

.section-cta.section-cta--center img {
  width: 300px;
}

/* =========================
   MOBILE REBUILD / HEADER
========================= */

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 10px;
  background: var(--primary);
  padding: 10px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: #fff;
  transition: 0.25s ease;
}

.hero-clinic-card {
  display: none;
}

@media (max-width: 991px) {
  .topbar {
    display: flex;
    flex-direction: column;
  }

  .main-header {
    position: sticky;
    top: 0;
    z-index: 999;
  }

  .header__inner {
    position: relative;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: 78px;
    margin: 0;
    padding: 14px 18px;
  }



  .nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 18px;
    right: 18px;
    z-index: 99;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    padding: 10px 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    border-right: none !important;
    border-bottom: 1px solid rgba(13, 45, 99, 0.08);
    padding: 15px 18px;
    font-size: 13px;
    text-align: left;
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .main-nav a.active::after,
  .main-nav a:hover::after {
    display: none;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

.badge-width {
  width: 400px;
}

.badge-width2 {
  width: 530px;
}

.doctor-image {
  display: none;
}

/* =========================
   MOBILE GERAL
========================= */

@media (max-width: 991px) {
  .container-site {
    width: calc(100% - 32px);
  }

  .badge-width {
    width: 245px;
  }

  .section-block {
    padding: 0;
  }

  .header__inner {
    padding: 12px 0;
  }


  .main-nav {
    left: 0;
    right: 0;
  }

  .simple-title-divider,
  .simple-title-divider--compact,
  .simple-title-divider--spaced {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .simple-title-divider::after {
    height: 4px;
  }

  .hero-box {
    min-height: auto;
    padding: 42px 20px 28px;
    background: url("../img/mobile.jpg") center/cover no-repeat;
    border-radius: 24px;
  }

  .hero-layer {
    position: static;
  }

  .hero-copy,
  .hero-description {
    position: static;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .hero-copy {
    margin: 0 0 18px;
  }

  .hero-mini {
    font-size: 24px;
    line-height: 1.15;
    margin-bottom: 10px;
    text-align: left;
  }

  .hero-title {
    font-size: 54px;
    line-height: 0.95;
    margin-bottom: 0;
    text-align: left;
  }

  .hero-description {
    margin: 0 0 18px;
    padding: 0;
    background: transparent;
    color: #fff;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 500;
    text-align: left;
  }

  .hero-clinic-card {
    display: block;
    width: 100%;
    max-width: 340px;
    border-radius: 22px;
    overflow: hidden;
  }

  .hero-clinic-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
  }

  .specialties-box {
    height: auto;
    padding: 24px 20px;
    background: url("../img/atendimento-especializado-mobile.jpg") center/cover
      no-repeat;
    border-radius: 24px;
  }

  .specialties-layer {
    position: static;
  }

  .specialties-title-bar {
    position: static;
    width: 100%;
    height: auto;
    margin: 0 0 18px;
    padding: 14px 18px;
    border-radius: 16px;
    justify-content: flex-start;
    text-align: left;
    font-size: 18px;
    line-height: 1.15;
  }

  .specialties-left-box,
  .specialties-right-box {
    position: static;
    width: 100%;
    min-height: auto;
    padding: 18px;
    border-radius: 18px;
    margin: 0 0 14px;
    backdrop-filter: none;
  }

  .specialties-left-box {
    background: rgba(13, 45, 99, 0.88);
  }

  .specialties-right-box {
    background: rgba(107, 205, 234, 0.9);
    color: #13213d;
  }

  .specialties-list li {
    font-size: 14px;
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .section-cta,
  .section-cta--center,
  .section-cta--hero,
  .section-cta--faq,
  .cta-imagem,
  .exames-cta {
    justify-content: flex-start;
  }

  .section-cta--hero {
    position: static;
    margin-top: 10px;
  }

  .section-cta img,
  .section-cta--center img,
  .cta-imagem img,
  .exames-cta img,
  .section-cta--hero a img {
    width: 240px !important;
    margin: 0;
  }

  .panel-text,
  .clinic-intro,
  .faq-heading,
  .exam-card__content h4,
  .exam-card__bubble p,
  .location-card--photo p {
    text-align: left !important;
  }

  .clinic-intro {
    font-size: 15px;
    line-height: 1.5;
    margin-top: 0;
  }

  .doctor-card {
    min-height: 560px;
    background-position: 24% top;
  }

  .doctor-name-block,
  .doctor-name-block1,
  .doctor-role,
  .doctor-bullets,
  .doctor-bullets1 {
    position: static;
  }

  .doctor-name-block,
  .doctor-name-block1 {
    padding-top: 55px;
    margin: 0 0 12px;
  }

  .doctor-role {
    margin-top: 0;
    font-size: 20px;
  }

  .doctor-bullets,
  .doctor-bullets1 {
    margin-top: 12px;
    font-size: 12px;
  }

  .doctor-name-block img,
  .doctor-name-block1 img {
    width: 260px !important;
    max-width: 100%;
  }

  .doctor-card {
    position: relative;
  }

  .doctor-image {
    display: block;
    position: absolute;
    bottom: 18px;
    right: 0;
    height: 53%;
    object-fit: contain;
  }

  .clinic-gallery {
    margin-top: 14px;
  }

  .path1,
  .path2,
  .exam-decor {
    display: none;
  }

  .exam-card__content h4 {
    margin: 0 0 16px;
  }

  .exam-cards {
    margin: 28px 0 0;
    gap: 18px;
  }

  .exam-card {
    flex-direction: column;
    gap: 10px;
  }

  .exam-card__image {
    width: 70%;
    max-width: 100%;
    height: 220px;
  }

  .exam-card__line {
    display: none;
  }

  .exam-card__content {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
  }

  .exam-card__content h4 {
    margin-right: 0;
  }

  .exam-card__bubble {
    height: auto;
  }
  /* 
  .exam-card__bubble::before {
    top: -14px;
    left: 26px;
    border-right: 12px solid transparent;
    border-left: 12px solid transparent;
    border-bottom: 14px solid var(--surface-2);
    border-top: none;
  } */

  

  .faq-panel {
    min-height: auto;
    padding: 28px 20px 30px;
    background-position: 35% center;
  }

  .faq-heading,
  .faq-accordion {
    position: static;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .faq-heading {
    margin-bottom: 18px;
    font-size: 24px;
  }

  .faq-button {
    font-size: 13px;
    line-height: 1.35;
    text-align: left;
  }

  .faq-body {
    text-align: left;
  }

  .section-cta--faq {
    position: static;
    transform: none;
    margin-top: 20px;
  }

  .location-section {
    margin-top: 40px;
  }

  .location-grid {
    flex-direction: column;
    gap: 18px;
  }

  .location-copy,
  .location-card--photo,
  .location-card--map {
    flex: initial;
  }

  .location-card__media,
  .location-card--photo img,
  .location-card--map iframe {
    min-height: 240px;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-col {
    width: 100%;
    align-items: flex-start;
    text-align: left;
    padding: 16px 0;
  }

  .footer-col:not(:last-child) {
    border-right: none;
    border-bottom: 2px solid var(--secondary);
  }

  .panel-shape {
    inset: 0 0px;
    border-radius: 20px;
  }

  .panel-text br {
    display: none;
  }

  .exames-top-title {
    width: 300px;
  }

  .exams-title-image {
    max-width: 90%;
    height: auto;
    display: block;
    width: 543px;
    position: absolute;
    left: 17px;
  }
  .exams-hero {
    background-image: url(../img/exame-fundo.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 20% center;
  }
  .exam-tags {
    position: absolute;
    top: 128px;
    left: 122px;
  }
  .exams-title-image {
    max-width: 72%;
    height: auto;
    display: block;
    width: 543px;
    position: absolute;
    left: 84px;
    top: 62px;
  }
}
.section-cta img {
  transition: transform 0.3s ease;
  cursor: pointer;
}

.section-cta img:hover {
  transform: scale(1.1);
}
.cta-imagem img {
  transition: transform 0.3s ease;
  cursor: pointer;
}

.cta-imagem img:hover {
  transform: scale(1.1);
}
.exames-cta img {
  transition: transform 0.3s ease;
  cursor: pointer;
}
.exames-cta img:hover {
  transform: scale(1.1);
}