/* ==========================================================================
   Dr. Joaquim Fernandes — Ortopedia & Traumatologia | Cirurgia do Joelho
   ========================================================================== */

:root{
  --blue:        #0068a4;
  --blue-dark:   #045282;
  --blue-deep:   #043a5c;
  --blue-pale:   #eaf4fa;
  --blue-pale-2: #f5fafd;
  --lime:        #c2d038;
  --lime-dark:   #a9b82c;
  --lime-pale:   #f6f9e2;
  --ink:         #123047;
  --text:        #44545f;
  --text-light:  #67757f;
  --line:        #e2e8ec;
  --bg-soft:     #f5f8fa;
  --white:       #ffffff;

  --font-heading: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --container: 1220px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --shadow-sm: 0 6px 18px rgba(4, 58, 92, .08);
  --shadow-md: 0 20px 50px rgba(4, 58, 92, .14);
  --header-h: 128px;
}

/* ---------- reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul{ list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4{ font-family: var(--font-heading); color: var(--blue); margin: 0; line-height: 1.2; }
p{ margin: 0; }
.icon{ width: 1em; height: 1em; }

section[id]{ scroll-margin-top: var(--header-h); }

.skip-link{
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--blue); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus{ left: 0; }

:focus-visible{ outline: 3px solid var(--lime); outline-offset: 2px; }

.container{
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---------- shared bits ---------- */
.eyebrow{
  display: inline-block;
  font-weight: 700;
  color: var(--blue);
  font-size: .95rem;
  margin-bottom: 6px;
}
.section-heading{ margin-bottom: 40px; }
.section-heading h2{ font-size: clamp(1.7rem, 3vw, 2.35rem); }
.section-heading--center{ text-align: center; }

.btn{
  --btn-bg: var(--blue);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 700;
  font-size: .98rem;
  padding: 15px 26px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
  white-space: nowrap;
}
.btn .icon{ width: 1.15em; height: 1.15em; flex-shrink: 0; }
.btn:hover{ transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--accent{ --btn-bg: var(--lime); --btn-fg: var(--blue-deep); }
.btn--accent:hover{ background: var(--lime-dark); }
.btn--primary{ --btn-bg: var(--blue); --btn-fg: #fff; }
.btn--primary:hover{ background: var(--blue-dark); }
.btn--pill{ border-radius: 999px; padding: 2px 22px; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header{ position: relative; z-index: 60; }

.topbar{ background: var(--blue-deep); color: #fff; font-size: .88rem; }
.topbar__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 10px;
  flex-wrap: wrap;
}
.topbar__contacts{ display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar__contacts a{ display: inline-flex; align-items: center; gap: 8px; font-weight: 600; opacity: .95; transition: opacity .15s; }
.topbar__contacts a:hover{ opacity: 1; text-decoration: underline; }
.topbar__contacts .icon{ font-size: 1rem; opacity: .9; }
.topbar__email{ display: inline-flex; }
.topbar__social{ display: flex; align-items: center; gap: 12px; }
.topbar__social a{
  width: 30px; height: 30px; display: grid; place-items: center;
  background: rgba(255,255,255,.12); border-radius: 50%;
  transition: background .15s;
}
.topbar__social a:hover{ background: rgba(255,255,255,.28); }
.topbar__social .icon{ font-size: .95rem; }

.navbar{ background: var(--lime); position: sticky; top: 0; z-index: 70; box-shadow: 0 1px 0 rgba(0,0,0,.05); }
.navbar.is-scrolled{ box-shadow: 0 8px 24px rgba(4,58,92,.18); }
.navbar__inner{ display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 10px; }

.navbar__brand{ display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.navbar__brand-img{ width: 46px; height: 46px; border-radius: 50%; }
.navbar__brand-text{ display: flex; flex-direction: column; line-height: 1.15; }
.navbar__brand-text strong{ font-family: var(--font-heading); color: var(--blue-deep); font-size: 1rem; }
.navbar__brand-text small{ color: var(--blue-deep); opacity: .8; font-size: .72rem; font-weight: 600; }

.navbar__toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  border-radius: 8px;
  flex-shrink: 0;
}
.navbar__toggle span{ width: 22px; height: 2.5px; background: var(--blue-deep); border-radius: 2px; transition: transform .2s, opacity .2s; }
.navbar__toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
.navbar__toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.navbar__toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }

.navbar__menu{ display: flex; align-items: center; gap: 228px; 
    justify-content: space-between; width: 100%; }
.navbar__links{ display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.navbar__links a{
  font-weight: 600; color: var(--blue-deep); font-size: .95rem;
  padding: 6px 2px; position: relative;
}
.navbar__links a::after{
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--blue-deep); transition: right .2s ease;
}
.navbar__links a:hover::after{ right: 0; }
.navbar__menu .btn--pill{ background: var(--blue-deep); }
.navbar__menu .btn--pill:hover{ background: var(--blue-dark); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{ position: relative; overflow-x: clip; padding-top: clamp(48px, 7vw, 90px); }
.hero__bg{ position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__bg img{
  position: absolute; top: -25%; left: 0;
  width: 100%; height: 150%;
  object-fit: cover; object-position: center;
  filter: blur(10px);
  will-change: transform;
}
.hero__bg::after{
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(4,42,68,.94) 0%, rgba(6,68,105,.88) 32%, rgba(6,90,132,.55) 58%, rgba(6,100,145,.4) 100%);
}

.hero__inner{ position: relative; min-height: clamp(480px, 56vw, 640px); display: flex; align-items: center; padding-bottom: 64px; }
.hero__content{ max-width: 580px; padding: 20px 0; }

.hero__identity{ display: flex; align-items: center; gap: 16px; margin-bottom: 30px; }
.hero__mark{ border-radius: 50%; flex-shrink: 0; }
.hero__identity-text{ display: flex; flex-direction: column; gap: 2px; }
.hero__name{ font-family: var(--font-heading); font-weight: 700; color: #fff; font-size: 1.4rem; }
.hero__specialty{ color: #fff; font-weight: 600; font-size: .92rem; opacity: .95; }
.hero__crm{ color: #d9ecf7; font-weight: 600; font-size: .78rem; letter-spacing: .02em; }

.hero__title{
  color: #fff; 
    font-size: clamp(1.7rem, 3.4vw, 2.0rem);
    font-weight: 100;
  margin-bottom: 22px;
}
.hero__text{ color: #eaf4fb; font-size: 1.03rem; max-width: 44ch; margin-bottom: 34px; }

.hero__photo{
  position: absolute;
  /* keeps the same distance from the container's right edge (where the
     nav links/button sit) instead of drifting once the viewport grows
     past the 1220px container cap */
  right: max(60px, calc((100vw - 1220px) / 2 + 60px));
  bottom: 0;
    height: calc(100% + 92px);
  width: auto; 
  max-width: 100%;
  object-fit: contain;
  object-position: bottom;
  z-index: 65;
  pointer-events: none;
  /* filter: drop-shadow(0 25px 40px rgba(3, 30, 50, .35)); */
}
.ti-footer-filter-text {
  display: none !important;
}
.ti-widget[data-wkey="8b711ab782b8254f4936fe0418b"][data-style="custom-style"] header[data-header-type="3"] .ti-widget-header {
  
    justify-content: left !important;
}
/* ==========================================================================
   SOBRE
   ========================================================================== */
.sobre{ padding: 96px 0; }
.sobre__grid{ display: grid; grid-template-columns: 1.15fr 2.5fr ; gap: 64px; align-items: center; }
.sobre__media img{ border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 3/3.6; object-fit: cover; object-position: calc(50% - -70px) center; width: 100%; }
.sobre__subtitle{ font-style: italic; color: var(--text-light); font-size: 1.05rem; margin: 8px 0 20px; line-height: 1.45; }
.sobre__text{ font-size: 1.02rem; margin-bottom: 28px; max-width: 54ch; }
.sobre__badges{ height: auto; width: auto; margin-bottom: 32px; float: right; }

/* ==========================================================================
   CONSULTÓRIO
   ========================================================================== */
.consultorio{ padding: 96px 0; background: var(--bg-soft); }
.consultorio__grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.consultorio__item{
  position: relative; display: block; width: 100%; padding: 0; overflow: hidden;
  border-radius: var(--radius-md); aspect-ratio: 3/2; box-shadow: var(--shadow-sm);
}
.consultorio__item img{ width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.consultorio__item:hover img{ transform: scale(1.08); }
.consultorio__zoom{
  position: absolute; inset: 0; display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(4,58,92,0) 40%, rgba(4,58,92,.55) 100%);
  opacity: 0; transition: opacity .25s ease;
}
.consultorio__zoom .icon{
  width: 42px; height: 42px; color: #fff; border: 2px solid #fff; border-radius: 50%; padding: 9px;
  transform: translateY(8px); transition: transform .25s ease;
}
.consultorio__item:hover .consultorio__zoom{ opacity: 1; }
.consultorio__item:hover .consultorio__zoom .icon{ transform: translateY(0); }

/* lightbox */
.lightbox{
  position: fixed; inset: 0; z-index: 200; background: rgba(4, 20, 32, .92);
  display: flex; align-items: center; justify-content: center; padding: 40px;
}
.lightbox[hidden]{ display: none; }
.lightbox img{ max-width: min(1100px, 100%); max-height: 88vh; border-radius: 14px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox__close{
  position: absolute; top: 24px; right: 24px; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff; display: grid; place-items: center;
  transition: background .15s;
}
.lightbox__close:hover{ background: rgba(255,255,255,.24); }
.ti-widget[data-layout-id='14'][data-set-id='ligth-border'] .ti-reviews-container-wrapper {
  margin: 0 !important;
}
/* ==========================================================================
   WIDGET EMBEDS (Instagram / Google)
   ========================================================================== */
.social-feed{ padding: 0px 0 48px; }
.reviews{ padding: 0px 0 46px; }
.widget-embed{ min-height: 220px; }
.widget-embed__skeleton{
  min-height: 220px; border: 1px solid var(--line); border-radius: var(--radius-md);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  color: var(--text-light); background: var(--bg-soft);
}
.widget-embed__skeleton .dot{
  display: inline-block; width: 10px; height: 10px; border-radius: 50%; background: var(--blue);
  margin: 0 3px; animation: pulse 1.1s infinite ease-in-out both;
}
.widget-embed__skeleton .dot:nth-child(1){ animation-delay: -0.24s; }
.widget-embed__skeleton .dot:nth-child(2){ animation-delay: -0.12s; }
@keyframes pulse{ 0%, 80%, 100%{ transform: scale(.6); opacity: .5; } 40%{ transform: scale(1); opacity: 1; } }

/* ==========================================================================
   DÚVIDAS / FAQ
   ========================================================================== */
.duvidas{ padding: 96px 0; }
.duvidas__grid{ display: grid; grid-template-columns: 1.15fr 1.85fr; gap: 64px; align-items: center; }
.duvidas__media img{ border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/3.4; object-fit: cover; }

.accordion{ display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.accordion__item{ border-radius: var(--radius-sm); overflow: hidden; }
.accordion__trigger{
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: var(--blue); color: #fff; font-family: var(--font-heading); font-weight: 600;
  font-size: .98rem; text-align: left; padding: 18px 22px; border-radius: var(--radius-sm);
  transition: background .15s;
}
.accordion__trigger:hover{ background: var(--blue-dark); }
.accordion__chevron{ flex-shrink: 0; transition: transform .25s ease; }
.accordion__trigger[aria-expanded="true"] .accordion__chevron{ transform: rotate(180deg); }
.accordion__trigger[aria-expanded="true"]{ border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
.accordion__panel{
  background: var(--blue-pale); padding: 20px 22px; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  color: var(--ink); font-size: .96rem;
}
.accordion__panel[hidden]{ display: none; }

/* ==========================================================================
   CONTATO
   ========================================================================== */
.contato{ padding: 96px 0 0; background: var(--bg-soft); overflow: hidden; }
.contato__panel{ position: relative; padding-bottom: 90px; padding-top: 0; }

.contato__card{
  background: linear-gradient(180deg, #ffffff, #eef2f4);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 56px clamp(20px, 6vw, 70px) 140px;
  gap: 40px 32px;
  min-height: 340px;
}
.contato__info{ padding-top: 10px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.contato__info .contato__route{ margin-top: auto; }
.contato__info h3{ font-size: 1.2rem; margin-bottom: 18px; }
.contato__address{ margin-bottom: 16px; font-size: 1rem; }
.contato__tel{ font-weight: 700; color: var(--blue); font-size: 1.05rem; margin-bottom: 18px; }
.contato__tel a{ transition: color .15s; }
.contato__tel a:hover{ color: var(--blue-dark); text-decoration: underline; }

.contato__route{
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .88rem; font-weight: 700; color: var(--blue);
  border: 1.5px solid var(--blue); border-radius: 999px;
  padding: 8px 16px;
  transition: background-color .15s, color .15s;
}
.contato__route .icon{ width: 1em; height: 1em; }
.contato__route:hover{ background: var(--blue); color: #fff; }

.contato__photo{
  position: absolute;
  left: 50%; top: 0;
  transform: translateX(-50%);
  height: 300px; width: auto;
  z-index: 5;
  filter: drop-shadow(0 20px 30px rgba(4,58,92,.25));
}

.contato__maps{
  background: var(--blue);
  border-radius: var(--radius-lg);
  margin-top: -70px;
  padding: 40px clamp(20px, 6vw, 60px) 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}
.contato__map h4{ color: #fff; text-align: center; font-size: 1.15rem; margin-bottom: 16px; }
.contato__map-frame{ border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 14px 34px rgba(0,0,0,.25); aspect-ratio: 16/10; }
.contato__map-frame iframe{ width: 100%; height: 100%; border: 0; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer{ background: var(--blue-deep); color: #cfe1ec; }
.footer__top{ padding: 72px 0 40px; }
.footer__grid{ display: grid; grid-template-columns: 1.1fr .7fr 2.2fr; gap: 40px; }
.footer__col h3{ color: #fff; font-size: 1rem; margin-bottom: 18px; }

.footer__locations{ display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px 28px; }
.footer__location h4{ color: #fff; font-family: var(--font-heading); font-weight: 600; font-size: .95rem; margin-bottom: 12px; }

.footer__brand{ display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer__brand img{ border-radius: 50%; }
.footer__brand strong{ display: block; color: #fff; font-family: var(--font-heading); font-size: 1.05rem; }
.footer__brand small{ display: block; opacity: .8; font-size: .8rem; margin-top: 2px; }
.footer__crm{ font-size: .82rem; opacity: .75; margin-bottom: 14px; }
.footer__text{ font-size: .92rem; opacity: .9; margin-bottom: 22px; max-width: 34ch; }

.footer__social{ display: flex; gap: 10px; }
.footer__social a{
  width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.1); transition: background .15s;
}
.footer__social a:hover{ background: var(--lime); color: var(--blue-deep); }

.footer__links{ display: flex; flex-direction: column; gap: 12px; }
.footer__links a{ font-size: .94rem; opacity: .9; transition: opacity .15s, padding-left .15s; }
.footer__links a:hover{ opacity: 1; padding-left: 4px; color: var(--lime); }

.footer__address{ display: flex; gap: 10px; font-size: .92rem; opacity: .92; margin-bottom: 14px; align-items: flex-start; }
.footer__address .icon{ margin-top: 3px; flex-shrink: 0; color: var(--lime); }
.footer__phones{ display: flex; flex-direction: column; gap: 10px; }
.footer__phones a{ display: flex; align-items: center; gap: 8px; font-size: .92rem; opacity: .92; transition: opacity .15s; }
.footer__phones a:hover{ opacity: 1; color: var(--lime); }

.footer__bottom{ border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; }
.footer__bottom-inner{ display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .82rem; opacity: .75; }

.whatsapp-fab{
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(4,58,92,.35);
  transition: transform .2s ease;
}
.whatsapp-fab:hover{ transform: scale(1.08); }
.whatsapp-fab .icon{ width: 30px; height: 30px; }

/* ==========================================================================
   REVEAL ANIMATION
   ========================================================================== */
.reveal{
  --reveal-delay: 0s;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16,.84,.44,1), transform .7s cubic-bezier(.16,.84,.44,1);
  transition-delay: var(--reveal-delay);
}
.reveal.is-visible{ opacity: 1; transform: none; }

/* directional variants for a varied, staggered reveal sequence */
.reveal--left{ transform: translateX(-46px); }
.reveal--right{ transform: translateX(46px); }
.reveal--zoom{ transform: scale(.92); }
.reveal--zoom.is-visible{ transform: scale(1); }

.sobre__content {
  text-align: right;
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .reveal{ opacity: 1; transform: none; transition: none; }
  .consultorio__item img, .btn, .footer__links a{ transition: none; }
}

  .sobre__content h2 {
    font-weight: 100;
    font-size: 20px;
    line-height: 1.6;
  }
/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px){
  .footer__grid{ grid-template-columns: 1fr; }
  .sobre__grid, .duvidas__grid{ gap: 44px; }
  .hero__content{ max-width: 440px; }
  .hero__photo{ max-width: 36vw; height: calc(100% + 10px); }
}

@media (max-width: 960px)
{
  .sobre__content {
    text-align: left;
  }
  .footer__locations {
    
    grid-template-columns: max-content;
  }
  .navbar {
    display: none;
  }
  .hero {
    padding-top: 0;
  }
  .hero__photo{ max-width: 40vw; }
  .hero__name {
    font-size: 1.2rem;
  }
  .duvidas__media img {
    aspect-ratio: 3 / 2;
    height: auto;
  }
}

@media (max-width: 700px){
  .topbar__email{ display: none; }
}

@media (max-width: 1150px){
  .navbar__toggle{ display: flex; }
  .navbar__menu{
    position: fixed; inset: 128px 0 0 0; height: calc(100vh - 128px);
    background: var(--white); flex-direction: column; align-items: stretch;
    padding: 28px 24px; gap: 24px; overflow-y: auto;
    transform: translateX(100%); transition: transform .28s ease;
    box-shadow: -10px 0 30px rgba(4,58,92,.12);
  }
  .navbar__menu.is-open{ transform: translateX(0); }
  .navbar__links{ flex-direction: column; align-items: flex-start; gap: 18px; }
  .navbar__links a{ font-size: 1.05rem; }
  .navbar__menu .btn--pill{ justify-content: center; }

  .hero__inner{ padding-bottom: 0; }
  .hero__photo{ position: relative; height: auto; width: 62%; max-width: 320px; margin: 12px auto 0; right: auto; }
  .hero{ padding-bottom: 0; }
  .hero__content{ max-width: 100%; text-align: left; }

  .sobre__grid{ grid-template-columns: 1fr; }
  .sobre__media{ max-width: 380px; margin-inline: auto; }

  .duvidas__grid{ grid-template-columns: 1fr; }
  .duvidas__media{ order: -1; max-width: 460px; margin-inline: auto; }

  .contato__card{ grid-template-columns: 1fr; text-align: center; }
  .contato__photo{ height: 300px; }
  .contato__maps{ grid-template-columns: 1fr; }
}

@media (max-width: 400px){
  .navbar__brand-text small{ display: none; }
  .navbar__brand-text strong{ font-size: .88rem; }
}

@media (max-width: 640px){
  .consultorio__grid{ grid-template-columns: 1fr 1fr; }
  .topbar__contacts{ gap: 14px; }
  .topbar__contacts span{ display: none; }
  .hero__title{ max-width: 100%; }
  .footer__bottom-inner{ flex-direction: column; gap: 6px; }
  .contato__maps{ margin-top: -40px; padding-top: 60px; }
  .contato__photo{ height: 240px; }
  .contato__panel{ padding-top: 0px; }

  .sobre__media img{ aspect-ratio: 1/1; height: auto; }
  .duvidas__media img{ aspect-ratio: 1/1; height: auto; }
}

@media (max-width: 420px){
  .consultorio__grid{ grid-template-columns: 1fr; }
}



