@font-face {
  font-family: "Mansory";
  src: url("fonts/Mansory-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --dark: #071410;
  --dark-2: #0b211b;
  --green: #0e5c53;
  --green-2: #0a413b;
  --gold: #be9d63;
  --cream: #f7f7f7;
  --soft: #e9f1ed;
  --white: #ffffff;
  --muted: #6b7772;
  --line: rgba(255,255,255,.14);
  --line-light: #d9d1c2;
  --max: 1180px;
  --hero-text: #39433c;
}

.hero h1,
.hero .quote,
.about-content h2,
.section-head h2,
.blog-head h2,
.blog-detail-hero h1,
.blog-lead {
  font-family: "Mansory", "Fraunces", serif;
  font-weight: 400;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  font-family: "Mulish", sans-serif;
  background: var(--cream);
  color: #13211e;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold);
}

.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  font-family: "Mansory", "Fraunces", serif;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.02em;
}



.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  padding-top: env(safe-area-inset-top);
  color: var(--hero-text);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 0;
  box-shadow: none;
  transition: .25s ease;
}

.nav {
  height: 86px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}

.nav-reference {
  position: relative;
}

.header-mini-brand {
  justify-self: start;
  display: grid;
  gap: 2px;
  color: var(--hero-text);
}

.header-mini-brand strong {
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.1;
}

.header-mini-brand span {
  color: rgba(57, 67, 60, .72);
  font-size: .78rem;
  font-weight: 600;
}

.header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.header-whatsapp-btn {
  width: 156px;
  min-height: 42px;
  padding: 7px 18px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;

  color: var(--gold);
  background: var(--green-2);
  border: 0;
  border-radius: 999px;

  font-family: "Mulish", sans-serif;
  line-height: 1;
  box-shadow: none;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: .25s ease;
}

.header-whatsapp-btn strong {
  display: block;
  color: inherit;
  font-size: .78rem;
  font-weight: 900;
  line-height: 1;
}

.header-whatsapp-btn:hover {
  color: var(--green-2);
  background: var(--gold);
  border-color: transparent;
  transform: translateY(-1px);
}

.burger {
  position: relative;
  top: auto;
  right: auto;
  z-index: 95;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
}

.burger:hover {
  background: transparent;
  transform: none;
}

.burger span {
  display: block;
  width: 25px;
  height: 1.5px;
  background: var(--hero-text);
  border-radius: 4px;
  transition: .25s ease;
}

.burger span + span {
  margin-top: -15px;
}

.burger:hover span {
  background: var(--hero-text);
}

.burger.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.burger.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}


.menu-drawer.open {
  transform: translateX(0);
}

.menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 100%);
  height: 100vh;
  padding: 116px 34px 38px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  background: #f4f0e8;
  border-left: 1px solid rgba(57, 67, 60, .16);
  box-shadow: -24px 0 70px rgba(0,0,0,.34);
  transform: translateX(105%);
  transition: transform .38s cubic-bezier(.2,.7,.2,1);
  z-index: 90;
}

.menu-drawer a {
  width: 100%;
  padding: 12px 0;
  color: rgba(57, 67, 60, .78);
  font-family: "Mulish", sans-serif;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .22em;
  border-bottom: 1px solid rgba(57, 67, 60, .12);
  transition: color .25s ease, padding-left .25s ease;
}

.menu-drawer a:hover {
  color: var(--hero-text);
  padding-left: 8px;
  letter-spacing: .18em;
}

.menu-drawer a::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  margin-right: 12px;
  vertical-align: middle;
  background: var(--hero-text);
  transform: translateY(-2px);
}

.hero {
  min-height: 92vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
}

.hero::before {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(var(--max), calc(100% - 48px));
  min-height: 92vh;
  margin: 0 auto;
  padding: 130px 0 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.hero h1 {
  max-width: 620px;
  margin-top: 0;
  font-size: clamp(3rem, 6.2vw, 5.9rem);
  line-height: .92;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--hero-text);
}

.hero .quote {
  max-width: 520px;
  margin-top: 20px;
  font-family: "Mulish", sans-serif;
  font-size: clamp(.76rem, .95vw, .92rem);
  font-weight: 800;
  line-height: 1.55;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--hero-text);
}

.hero-credentials {
  max-width: 520px;
  margin-top: 22px;
  color: var(--hero-text);
  font-weight: 700;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  opacity: .82;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero::after,
.specialties::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 25% 100%, 100% 33.3%;
  z-index: 3;
  pointer-events: none;
}

.hero .kicker {
  font-size: .68rem;
  letter-spacing: .22em;
  color: rgba(255,255,255,.78);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.section {
  padding: 84px 0;
}

.clinic {
  background: var(--cream);
}

/* =========================
   CLINICA - VERSAO REFINADA
========================= */

.clinic-refined {
  background: var(--cream);
  padding: 92px 0;
}

.clinic-refined .wrap {
  display: grid;
  gap: 34px;
}

.clinic-refined-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .8fr);
  gap: 56px;
  align-items: center;
}

.clinic-refined-copy {
  max-width: 690px;
}

.clinic-refined-copy h2 {
  margin: 22px 0 20px;
  color: var(--hero-text);
  font-size: clamp(2.2rem, 4.4vw, 4.3rem);
  line-height: .96;
}

.clinic-refined-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.04rem;
  margin-bottom: 16px;
}


.clinic-refined-photo {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--dark);
  box-shadow: 0 26px 70px rgba(0,0,0,.13);
}

.clinic-refined-photo::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,.32);
  z-index: 2;
  pointer-events: none;
}

.clinic-refined-photo img {
  width: 100%;
  aspect-ratio: 4 / 3.2;
  height: auto;
  object-fit: cover;
  object-position: center center;
  transition: .35s ease;
}

.clinic-refined-photo:hover img {
  transform: scale(1.025);
}

/* =========================
   CLÍNICA - PROCESSO DE ATENDIMENTO
========================= */

.clinic-process-head {
  max-width: none;
  margin-top: 10px;
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
}

.clinic-process-head .kicker {
  color: var(--gold);
}

.clinic-process {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 24px;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.clinic-process article {
  min-height: 220px;
  padding: 22px 18px;
  background: rgba(255,255,255,.30);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition: .25s ease;
}

.clinic-process article:hover {
  background: rgba(255,255,255,.58);
  transform: translateY(-4px);
}

.clinic-process span {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
  line-height: 1;
}

.clinic-process h3 {
  margin-bottom: 12px;
  color: var(--dark);
  font-family: "Mulish", sans-serif;
  font-size: .86rem;
  font-weight: 900;
  line-height: 1.28;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.clinic-process p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.6;
}

.specialties {
  position: relative;
  color: var(--white);
  background: var(--dark);
  overflow: hidden;
}

.specialties .wrap {
  position: relative;
  z-index: 4;
}

.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-head h2 {
  margin-top: 20px;
  color: var(--hero-text);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.specialties .section-head h2 {
  color: var(--white);
}

.section-head p {
  margin-top: 16px;
  color: rgba(255,255,255,.68);
}

.procedure-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.procedure {
  min-height: 260px;
  position: relative;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.018);
}

.procedure:hover {
  background: rgba(255,255,255,.055);
}

.procedure .num {
  position: absolute;
  top: 24px;
  right: 28px;
  color: rgba(255,255,255,.36);
  font-weight: 800;
}

.procedure .mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 42px;
  color: var(--white);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
}

.procedure .mark svg {
  width: 22px;
  height: 22px;
  display: block;
  stroke: currentColor;
}

.procedure:hover .mark {
  color: var(--gold);
  border-color: rgba(190,157,99,.45);
  background: rgba(190,157,99,.10);
}

.procedure h3 {
  max-width: 330px;
  margin-bottom: 16px;
  font-family: "Mulish", sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
}

.procedure p {
  max-width: 420px;
  color: rgba(255,255,255,.66);
  font-size: .95rem;
}

.specialties-cta {
  display: flex;
  justify-content: flex-end;
  margin-top: 58px;
}

.specialties-cta-link {
  min-width: 280px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 0 14px;
  color: var(--white);
  border-bottom: 2px solid rgba(255,255,255,.82);
  font-size: .92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: .25s ease;
}

.specialties-cta-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateX(6px);
}

.specialties-cta-link svg {
  flex: none;
  transition: .25s ease;
}

.specialties-cta-link:hover svg {
  transform: translate(4px, -4px);
}

.about {
  background: var(--cream);
  padding: 96px 0;
}

.polaroid-card {
  position: relative;
  width: min(430px, 100%);
  padding: 14px 14px 0;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(0,0,0,.12);
  transform: none;
  overflow: hidden;
  z-index: 1;
}

.polaroid-card img {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  object-position: center 16%;
  background: var(--dark);
  border: 0;
  outline: 0;
  display: block;
  transform: none;
}

.polaroid-caption {
  padding: 18px 6px 14px;
}

.polaroid-caption h3 {
  font-family: "Mulish", sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 4px;
}

.polaroid-caption p {
  color: var(--muted);
  font-size: .95rem;
  margin: 0;
}

.about-content h2 {
  margin: 22px 0;
  color: var(--hero-text);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.about-content p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.about-line {
  margin: 30px 0;
  height: 1px;
  background: var(--line-light);
}

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  grid-template-areas:
    "photo content"
    "credentials credentials";
  gap: 64px 72px;
  align-items: center;
}

.about-polaroid {
  grid-area: photo;
  display: flex;
  justify-content: center;
}

.about-content {
  grid-area: content;
  max-width: 680px;
}

.about-credentials {
  grid-area: credentials;
  width: 100%;
}

.about-credentials .about-line {
  margin: 0 0 34px;
  height: 1px;
  background: var(--line-light);
}

.credentials-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px 34px;
}

.credential {
  min-height: 72px;
  padding: 0 0 0 16px;
  border-left: 2px solid var(--gold);
  background: transparent;
  transition: .25s ease;
}

.credential:hover {
  transform: translateX(4px);
}

.credential b {
  display: block;
  color: var(--dark);
  font-family: "Mulish", sans-serif;
  font-size: .92rem;
  font-weight: 900;
  line-height: 1.25;
}

.credential span {
  display: block;
  max-width: 260px;
  margin-top: 4px;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.35;
}

/* =========================
   BLOG DETAIL - EDITORIAL
========================= */

.blog-detail-page {
  background: var(--cream);
}

.blog-detail-hero {
  min-height: 340px;
  padding: 120px 0 64px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background:
    linear-gradient(rgba(7,20,16,.74), rgba(7,20,16,.88)),
    url("assets/noticias/blog-urologia.jpg") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.blog-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 25% 100%, 100% 33.3%;
  pointer-events: none;
}

.blog-detail-hero .wrap {
  position: relative;
  z-index: 2;
}

.blog-detail-hero h1 {
  max-width: 900px;
  margin-top: 18px;
  font-size: clamp(2.2rem, 5.8vw, 4.8rem);
  color: var(--white);
}

.blog-detail-hero p {
  margin-top: 14px;
  color: rgba(255,255,255,.72);
  font-weight: 700;
}

.blog-detail-section {
  background: var(--cream);
}

.blog-detail-layout {
  max-width: 920px;
}

.blog-detail-article {
  max-width: 860px;
  margin: 0 auto;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  color: rgba(107, 119, 114, .78);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .04em;
}

.blog-meta span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  border: 0;
}

.blog-meta span + span::before {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(107, 119, 114, .38);
}

.blog-detail-cover {
  width: 100%;
  max-width: 760px;
  height: 390px;
  margin: 0 auto 42px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.blog-lead {
  margin-bottom: 30px;
  color: var(--green-2);
  font-family: "Fraunces", serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.25;
}

.blog-detail-article h2 {
  margin: 34px 0 12px;
  color: var(--green-2);
  font-family: "Mulish", sans-serif;
  font-size: 1.06rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.blog-detail-article p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.blog-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid var(--line-light);
}

.blog-share span {
  color: var(--dark);
  font-weight: 900;
}

.cp-post-share {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cp-post-share li {
  display: flex;
}

.blog-share a {
  min-width: 42px;
  height: 42px;
  width: 42px;
  padding: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 999px;
  color: var(--green-2);
  border: 1px solid var(--line-light);
  font-size: .76rem;
  font-weight: 900;
  transition: .25s ease;
}

.blog-share a i {
  font-size: 1rem;
  line-height: 1;
}

.blog-share a:hover {
  color: var(--white);
  background: var(--green-2);
  border-color: var(--green-2);
}

/* =========================
   NOTICIAS RELACIONADAS
========================= */

.related-posts {
  margin-top: 64px;
  padding-top: 44px;
  border-top: 1px solid var(--line-light);
}

.related-posts-head {
  max-width: 620px;
  margin-bottom: 26px;
}


.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.related-post-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  transition: .25s ease;
}

.related-post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0,0,0,.10);
}

.related-post-image {
  display: block;
  height: 205px;
  overflow: hidden;
}

.related-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .35s ease;
}

.related-post-card:hover .related-post-image img {
  transform: scale(1.04);
}

.related-post-content {
  padding: 22px;
}

.related-post-content span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: .66rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.related-post-content h3 {
  margin-bottom: 10px;
  color: var(--hero-text);
  font-family: "Mansory", "Fraunces", serif;
  font-size: clamp(1.22rem, 1.55vw, 1.45rem);
  font-weight: 400;
  line-height: 1.12;
  text-transform: none;
  letter-spacing: -.01em;
}

.related-post-content h3 a {
  color: inherit;
  transition: .25s ease;
}

.related-post-content h3 a:hover {
  color: var(--green-2);
}

.related-post-content p {
  color: rgba(107, 119, 114, .88);
  margin-bottom: 0;
  font-size: .9rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-back-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--green-2);
  font-weight: 900;
}

.blog {
  background: var(--cream);
}

.blog-head {
  text-align: center;
  margin-bottom: 28px;
}

.blog-head h2 {
  color: var(--hero-text);
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: .06em;
}

.blog-head .decor {
  width: 170px;
  height: 1px;
  background: var(--line-light);
  margin: 22px auto;
  position: relative;
}

.blog-head .decor::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -1px;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: var(--green-2);
}


.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  transition: .25s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0,0,0,.10);
}

.blog-card-image {
  display: block;
  height: 205px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .35s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.04);
}

.blog-card-content {
  padding: 22px;
}

.blog-category {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: .66rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.blog-card-content h3 {
  margin-bottom: 10px;
  color: var(--hero-text);
  font-family: "Mansory", "Fraunces", serif;
  font-size: clamp(1.22rem, 1.55vw, 1.45rem);
  font-weight: 400;
  line-height: 1.12;
  text-transform: none;
  letter-spacing: -.01em;
}

.blog-card-content p {
  color: rgba(107, 119, 114, .88);
  margin-bottom: 0;
  font-size: .9rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin-top: -4px;
  color: rgba(107, 119, 114, .78);
  border: 0;
  background: transparent;
  font-size: .78rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: none;
  transform: none;
  transition: .25s ease;
}

.blog-read-more::before {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(107, 119, 114, .38);
  transition: .25s ease;
}

.blog-read-more span {
  font-size: .95rem;
  line-height: 1;
  transition: .25s ease;
}

.blog-read-more:hover {
  color: var(--green-2);
}

.blog-read-more:hover::before {
  width: 44px;
  background: var(--gold);
}

.blog-read-more:hover span {
  transform: translate(3px, -3px);
}

footer {
  background: var(--dark);
  color: rgba(255,255,255,.72);
  padding: 52px 0 32px;
  border-top: 1px solid rgba(255,255,255,.10);
}

.foot-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.foot-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.foot-nav a {
  color: rgba(255,255,255,.68);
  font-size: .88rem;
  font-weight: 700;
}

.foot-social {
  display: flex;
  gap: 10px;
}

.foot-social a {
  width: 44px;
  min-width: 44px;
  height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.03);
  color: var(--white);
  transition: .25s ease;
}

.foot-social a svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.foot-social a:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.42);
  transform: translateY(-2px);
}

.foot-bot {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 22px;
  color: rgba(255,255,255,.56);
  font-size: .84rem;
}

.medical-note {
  max-width: 780px;
  margin-top: 18px;
  color: rgba(255,255,255,.48);
  font-size: .82rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 40px;
  z-index: 70;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 18px 40px rgba(0,0,0,.24);
  transition: .25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  background: var(--green-2);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: .75s cubic-bezier(.2,.7,.2,1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}


.blog-detail-cover.blog-detail-cover-full {
  width: min(100%, 920px);
  max-width: none;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

/* =========================
   BLOG - HOME COMPACTO
========================= */
.blog-top-action {
  display: flex;
  justify-content: flex-end;
  margin: -4px 0 34px;
}

.blog-all-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: auto;
  padding: 0;
  color: rgba(107, 119, 114, .78);
  border: 0;
  background: transparent;
  font-size: .78rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: none;
  transition: .25s ease;
}

.blog-all-link::before {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(107, 119, 114, .38);
  transition: .25s ease;
}

.blog-all-link span {
  font-size: .95rem;
  line-height: 1;
  transition: .25s ease;
}

.blog-all-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateX(6px);
}

.blog-all-link:hover::before {
  width: 46px;
  background: var(--gold);
}

.blog-all-link:hover span {
  transform: translate(4px, -4px);
}

/* =========================
   BLOG LIST PAGE
========================= */

.blog-list-page {
  background: var(--cream);
}

.blog-list-hero {
  min-height: 430px;
  padding: 135px 0 64px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background:
    linear-gradient(rgba(7,20,16,.76), rgba(7,20,16,.9)),
    url("assets/noticias/blog-urologia.jpg") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.blog-list-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 25% 100%, 100% 33.3%;
  pointer-events: none;
}

.blog-list-hero .wrap {
  position: relative;
  z-index: 2;
}

.blog-list-hero h1 {
  margin-top: 18px;
  color: var(--white);
  font-size: clamp(2rem, 4.8vw, 3.9rem);
  text-transform: uppercase;
}

.blog-list-hero p {
  max-width: 620px;
  margin-top: 14px;
  color: rgba(255,255,255,.72);
  font-size: .95rem;
  font-weight: 700;
}

.blog-list-section {
  background: var(--cream);
  padding-top: 72px;
}

.blog-search-area {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.blog-search-area label {
  display: block;
  margin-bottom: 14px;
  color: var(--green-2);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.blog-search-box {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line-light);
}

.blog-search-box input {
  width: 100%;
  height: 58px;
  padding: 0 58px 0 20px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--dark);
  font: inherit;
}

.blog-search-box input:focus {
  box-shadow: inset 0 0 0 1px var(--green-2);
}

.blog-search-box span {
  position: absolute;
  right: 20px;
  color: var(--green-2);
  font-size: 1.2rem;
}

.blog-search-area small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: .86rem;
}

.blog-list-grid {
  align-items: stretch;
}

.blog-empty-message {
  display: none;
  margin-top: 32px;
  text-align: center;
  color: var(--muted);
  font-weight: 800;
}

.blog-empty-message.show {
  display: block;
}

.blog-card.is-hidden {
  display: none;
}

/* =========================
   PILARES LATERAIS 
========================= */

.about,
.plans,
.blog {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.about > .wrap,
.plans > .wrap,
.blog > .wrap {
  position: relative;
  z-index: 3;
}

.about::before,
.about::after,
.plans::before,
.plans::after,
.blog::before,
.blog::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(180px, 17vw, 300px);
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .about::before,
  .about::after,
  .plans::before,
  .plans::after,
  .blog::before,
  .blog::after {
    display: none;
  }
}

/* lado esquerdo */
.about::before,
.blog::before {
  left: 0;
}

/* lado direito */
.about::after,
.blog::after {
  right: 0;
}

/* SOBRE E CONVÊNIOS - pilares cinza claro mais visíveis */
.about::before {
  background:
    linear-gradient(
      90deg,
      rgba(7, 20, 16, .105) 0%,
      rgba(7, 20, 16, .105) 34%,
      rgba(7, 20, 16, .055) 34%,
      rgba(7, 20, 16, .055) 58%,
      rgba(7, 20, 16, .025) 58%,
      rgba(7, 20, 16, .025) 76%,
      transparent 76%
    );
}

.about::after {
  background:
    linear-gradient(
      270deg,
      rgba(7, 20, 16, .105) 0%,
      rgba(7, 20, 16, .105) 34%,
      rgba(7, 20, 16, .055) 34%,
      rgba(7, 20, 16, .055) 58%,
      rgba(7, 20, 16, .025) 58%,
      rgba(7, 20, 16, .025) 76%,
      transparent 76%
    );
}

/* BLOG - pilares brancos mais fortes */
.blog::before {
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, .95) 0%,
      rgba(255, 255, 255, .95) 34%,
      rgba(255, 255, 255, .58) 34%,
      rgba(255, 255, 255, .58) 58%,
      rgba(255, 255, 255, .28) 58%,
      rgba(255, 255, 255, .28) 76%,
      transparent 76%
    );
}

.blog::after {
  background:
    linear-gradient(
      270deg,
      rgba(255, 255, 255, .95) 0%,
      rgba(255, 255, 255, .95) 34%,
      rgba(255, 255, 255, .58) 34%,
      rgba(255, 255, 255, .58) 58%,
      rgba(255, 255, 255, .28) 58%,
      rgba(255, 255, 255, .28) 76%,
      transparent 76%
    );
}

.plans::before {
  left: 0;
  background:
    linear-gradient(
      90deg,
      rgba(7, 20, 16, .105) 0%,
      rgba(7, 20, 16, .105) 34%,
      rgba(7, 20, 16, .055) 34%,
      rgba(7, 20, 16, .055) 58%,
      rgba(7, 20, 16, .025) 58%,
      rgba(7, 20, 16, .025) 76%,
      transparent 76%
    );
}

.plans::after {
  right: 0;
  background:
    linear-gradient(
      270deg,
      rgba(7, 20, 16, .105) 0%,
      rgba(7, 20, 16, .105) 34%,
      rgba(7, 20, 16, .055) 34%,
      rgba(7, 20, 16, .055) 58%,
      rgba(7, 20, 16, .025) 58%,
      rgba(7, 20, 16, .025) 76%,
      transparent 76%
    );
}

/* =========================
   HEADER DINÂMICO POR SEÇÃO
========================= */


.site-header.header-home {
  background: transparent;
  color: var(--hero-text);
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header.header-light {
  background: var(--green-2);
  color: var(--cream);
  border-bottom: 1px solid rgba(244, 240, 232, .12);
  box-shadow: 0 14px 38px rgba(0,0,0,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-header.header-dark {
  background: var(--cream);
  color: var(--hero-text);
  border-bottom: 1px solid rgba(57, 67, 60, .14);
  box-shadow: 0 14px 38px rgba(0,0,0,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-header.header-home .header-mini-brand,
.site-header.header-home .header-mini-brand strong,
.site-header.header-home .header-mini-brand span,
.site-header.header-home .burger {
  color: var(--hero-text);
}

.site-header.header-light .header-mini-brand,
.site-header.header-light .header-mini-brand strong,
.site-header.header-light .header-mini-brand span,
.site-header.header-light .burger {
  color: var(--cream);
}

.site-header.header-dark .header-mini-brand,
.site-header.header-dark .header-mini-brand strong,
.site-header.header-dark .header-mini-brand span,
.site-header.header-dark .burger {
  color: var(--hero-text);
}

.site-header.header-light .header-mini-brand span {
  color: rgba(244, 240, 232, .70);
}

.site-header.header-dark .header-mini-brand span,
.site-header.header-home .header-mini-brand span {
  color: rgba(57, 67, 60, .72);
}

.site-header.header-home .burger span,
.site-header.header-dark .burger span {
  background: var(--hero-text);
}

.site-header.header-light .burger span {
  background: var(--cream);
}

/* =========================
   CONVÊNIOS - ESTILO ANTIGO REAPROVEITADO
========================= */

.plans {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--cream);
  text-align: center;
  padding: 92px 0;
}

.plans > .wrap {
  position: relative;
  z-index: 3;
}

.plans h2 {
  max-width: 760px;
  margin: 18px auto 12px;
  color: var(--hero-text);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.plans-intro {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
}

.plans-line {
  margin-top: 46px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.plan-logo {
  min-width: 260px;
  min-height: 128px;
  padding: 28px 44px;
  border-right: 1px solid var(--line-light);
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.28);
  transition: .25s ease;
}

.plan-logo:first-child {
  border-left: 1px solid var(--line-light);
}

.plan-logo:hover {
  background: rgba(255,255,255,.58);
}

.plan-logo img {
  max-height: 78px;
  max-width: 230px;
  object-fit: contain;
  filter: grayscale(100%) contrast(145%) brightness(58%);
  opacity: .92;
  transition: .25s ease;
}

.plan-logo:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.04);
}

.plans-note {
  max-width: 680px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: .9rem;
}

/* WhatsApp flutuante - ícone branco */
.whatsapp-float {
  color: var(--white);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  display: block;
  fill: currentColor;
}

.whatsapp-float svg path {
  fill: currentColor;
}

/* =========================
   CONTACT - EDITORIAL
========================= */

.contact-boxed {
  position: relative;
  padding: 104px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.055), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.035), transparent 48%),
    var(--green-2);
  color: var(--white);
  overflow: hidden;
}

.contact-section-head {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin-bottom: 44px;
  text-align: center;
}

.contact-boxed .contact-info-panel .contact-section-head {
  width: 100%;
  max-width: 560px;
  margin: 0 0 clamp(38px, 4vw, 54px);
  text-align: left;
}

.contact-section-head .kicker {
  color: var(--gold);
}

.contact-section-head h2 {
  max-width: 780px;
  margin: 20px auto 14px;
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: .95;
}

.contact-boxed .contact-info-panel .contact-section-head h2 {
  max-width: 560px;
  margin: 0 0 14px;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.contact-section-head p {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(255,255,255,.68);
  font-size: 1rem;
  line-height: 1.65;
}

.contact-boxed .contact-info-panel .contact-section-head p {
  max-width: 560px;
  margin: 0;
}

.contact-boxed .contact-split-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 34px;
  align-items: stretch;
}

.contact-boxed .contact-info-panel,
.contact-boxed .contact-map-panel {
  min-height: 560px;
  border: 0;
}

.contact-boxed .contact-info-panel {
  padding: 0;
  background: transparent;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.contact-boxed .contact-info-list {
  width: 100%;
  max-width: 560px;
  display: grid;
  gap: 22px;
  border-top: 0;
}

.contact-boxed .contact-info-list a,
.contact-boxed .contact-info-list div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  transition: .25s ease;
}

.contact-boxed .contact-info-list a:hover {
  transform: translateX(4px);
}

.contact-boxed .contact-info-list strong {
  color: var(--gold);
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
  line-height: 1.2;
}

.contact-boxed .contact-info-list span {
  color: rgba(255,255,255,.86);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
}

.contact-boxed .contact-info-list a:hover span {
  color: var(--white);
}

.contact-social-links {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 42px;
}

.contact-social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(190, 157, 99, .42);
  border-radius: 999px;
  background: transparent;
  transition: .25s ease;
}

.contact-social-links a:hover {
  color: var(--green-2);
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.contact-social-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.contact-social-links a:nth-child(2) svg {
  fill: currentColor;
  stroke: none;
}

.contact-boxed .contact-map-panel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: var(--dark);
  box-shadow: 0 28px 80px rgba(0,0,0,.24);
}

.contact-boxed .contact-map-frame {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  display: block;
  filter: grayscale(100%) saturate(0%) contrast(1.08) brightness(.82);
}

.contact-boxed .contact-map-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: min(340px, calc(100% - 68px));
  position: absolute;
  right: 34px;
  bottom: 34px;
  background: transparent;
  border-top: 0;
  z-index: 3;
}

.contact-boxed .contact-map-actions .contact-line-cta {
  width: 100%;
  min-width: 0;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 16px 18px 13px;
  color: var(--white);
  background: rgba(7, 20, 16, .72);
  border: 0;
  border-bottom: 2px solid var(--gold);
  border-radius: 6px 6px 0 0;
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
  font-size: .88rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  transition: .25s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.contact-boxed .contact-map-actions .contact-line-cta span {
  color: var(--gold);
}

.contact-boxed .contact-map-actions .contact-line-cta:hover {
  color: var(--green-2);
  background: rgba(190, 157, 99, .94);
  border-bottom-color: var(--gold);
  transform: translateX(6px);
}

.contact-boxed .contact-map-actions .contact-line-cta:hover span {
  color: var(--green-2);
}

/* =========================
   BANNER - PREVENCAO
========================= */

.prevention-banner {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background: var(--cream);
  isolation: isolate;
}

.prevention-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.prevention-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left 14%;
  filter: grayscale(100%);
}

.prevention-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(244, 240, 232, .02) 0%,
      rgba(244, 240, 232, .08) 36%,
      rgba(244, 240, 232, .64) 58%,
      rgba(244, 240, 232, .96) 100%
    );
}

.prevention-banner-content {
  position: relative;
  z-index: 3;
  min-height: 340px;
  display: grid;
  grid-template-columns: minmax(0, .55fr) minmax(620px, .95fr);
  align-items: center;
}

.prevention-banner-text {
  grid-column: 2;
  width: 100%;
  max-width: 820px;
  justify-self: end;
}

.prevention-banner-text .kicker {
  color: var(--gold);
}

.prevention-banner-text h2 {
  max-width: 820px;
  margin-top: 22px;
  color: var(--hero-text);
  font-size: clamp(2rem, 2.7vw, 3rem);
  line-height: 1.05;
  letter-spacing: -.02em;
}

/* =========================
   BLOG LIST - BUSCA DENTRO DO HERO
========================= */

.blog-list-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 42px;
  align-items: end;
}

.blog-list-hero-text {
  max-width: 980px;
}

.blog-hero-search {
  width: 100%;
  align-self: end;
  margin-bottom: 10px;
}

.blog-search-box-hero {
  width: 100%;
  height: 46px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.42);
}

.blog-search-box-hero input {
  height: 46px;
  padding: 0 42px 0 0;
  color: var(--white);
  font-size: .9rem;
  font-weight: 700;
}

.blog-search-box-hero input::placeholder {
  color: rgba(255,255,255,.68);
}

.blog-search-box-hero input:focus {
  box-shadow: none;
}

.blog-search-box-hero:focus-within {
  border-bottom-color: var(--gold);
}

.blog-search-box-hero span {
  right: 0;
  color: var(--gold);
  font-size: 1.05rem;
}

.blog-hero-search small {
  display: block;
  margin-top: 12px;
  color: rgba(255,255,255,.66);
  font-size: .82rem;
  font-weight: 700;
}

/* =========================
    SVG para as setas
========================= */
.arrow-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex: none;
}

.arrow-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.arrow-icon path {
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 980px) {
  .contact-boxed .contact-split-grid {
    grid-template-columns: 1fr;
    width: min(780px, calc(100% - 72px));
    margin-left: auto;
    margin-right: auto;
    gap: 28px;
  }

  .contact-boxed .contact-info-panel,
  .contact-boxed .contact-map-panel {
    min-height: auto;
  }

  .contact-boxed .contact-info-panel {
    width: 100%;
    padding: 42px clamp(34px, 6vw, 58px);
    align-items: center;
  }

  .contact-boxed .contact-info-panel .contact-section-head,
  .contact-boxed .contact-info-list {
    width: 100%;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-boxed .contact-info-panel .contact-section-head h2,
  .contact-boxed .contact-info-panel .contact-section-head p {
    padding-left: 0;
    padding-right: 0;
  }

  .contact-boxed .contact-map-frame {
    min-height: 430px;
  }

  .prevention-banner {
    min-height: clamp(300px, 43vw, 380px);
  }

  .prevention-banner-content {
    min-height: clamp(300px, 43vw, 380px);
    grid-template-columns: minmax(240px, .74fr) minmax(0, 1fr);
    align-items: center;
    padding: 28px 0;
  }

  .prevention-banner-text {
    grid-column: 2;
    width: min(100%, 620px);
    max-width: none;
    justify-self: end;
    margin-left: 10px;
  }

  .prevention-banner-text h2 {
    font-size: clamp(1.8rem, 4.8vw, 3rem);
  }

  .prevention-banner-bg img {
    object-fit: cover;
    object-position: left center;
  }

  .prevention-banner::after {
    background:
      linear-gradient(
        90deg,
        rgba(244, 240, 232, .02) 0%,
        rgba(244, 240, 232, .10) 34%,
        rgba(244, 240, 232, .48) 56%,
        rgba(244, 240, 232, .92) 100%
      );
  }

  .clinic-refined-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .clinic-refined-photo {
    max-width: 720px;
  }

  .clinic-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .clinic-process article {
    min-height: auto;
    padding: 24px;
  }

  .clinic-process h3 {
    overflow-wrap: anywhere;
    word-break: normal;
  }
}


@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "photo"
      "credentials";
    gap: 34px;
  }

  .about-content {
    max-width: none;
  }

  .about-polaroid {
    justify-content: center;
  }

  .polaroid-card {
    width: min(360px, 100%);
  }

  .specialties-cta {
    justify-content: flex-end;
  }

  .specialties-cta-link {
    width: fit-content;
    min-width: 0;
    max-width: 100%;
    justify-content: flex-start;
    gap: 6px;
    white-space: nowrap;
  }
  .section-head,
  .contact-section-head {
    text-align: left;
  }

  .contact-section-head p {
    margin-left: 0;
    margin-right: 0;
  }

  .clinic-refined-copy h2,
  .clinic-refined-copy p,
  .about-content h2,
  .about-content p,
  .section-head h2,
  .section-head p,
  .contact-section-head h2,
  .contact-section-head p,
  .related-posts-head h2,
  .related-posts-head p {
    padding-left: 38px;
    padding-right: 16px;
  }

  .plans h2,
  .plans-intro,
  .blog-head,
  .blog-head h2,
  .blog-head p {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 620px) {

  .blog-list-hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .blog-hero-search {
    max-width: 100%;
    margin-bottom: 0;
  }

  .blog-search-box-hero {
    width: 100%;
  }

  .contact-boxed {
    padding: 72px 0;
  }

  .contact-section-head {
    text-align: left;
    margin-bottom: 34px;
  }

  .contact-boxed .contact-info-panel .contact-section-head {
    max-width: none;
    margin-bottom: 30px;
  }

  .contact-section-head h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .contact-section-head p {
    margin-left: 0;
  }

  .contact-boxed .contact-split-grid {
    width: min(100% - 30px, var(--max));
  }

  .contact-boxed .contact-info-panel {
    padding: 32px 24px;
  }

  .contact-boxed .contact-info-list {
    gap: 12px;
  }

  .contact-boxed .contact-info-list a,
  .contact-boxed .contact-info-list div {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 10px 12px;
  }

  .contact-social-links {
    margin-top: 34px;
  }

  .contact-boxed .contact-map-panel {
    border-radius: 20px;
  }

  .contact-boxed .contact-map-actions {
    width: min(50%, 210px);
    right: 24px;
    bottom: 28px;
    gap: 12px;
    justify-items: end;
  }

  .contact-boxed .contact-map-actions .contact-line-cta {
    width: fit-content;
    max-width: 100%;
    min-height: 48px;
    justify-self: end;
    justify-content: flex-start;
    gap: 6px;
    padding: 14px 16px 11px;
    font-size: .72rem;
    letter-spacing: .06em;
    white-space: nowrap;
  }

  .prevention-banner {
    min-height: clamp(190px, 44vw, 260px);
  }

  .prevention-banner-content {
    min-height: clamp(190px, 44vw, 260px);
    grid-template-columns: minmax(168px, .50fr) minmax(0, 1fr);
    align-items: center;
    padding: 10px 0;
  }

  .prevention-banner-text {
    grid-column: 2;
    max-width: 100%;
    justify-self: stretch;
    margin-left: 8px;
  }

  .prevention-banner-text h2 {
    max-width: 100%;
    font-size: clamp(1.05rem, 5.2vw, 1.9rem);
    line-height: 1.03;
  }

  .prevention-banner-bg img {
    object-fit: cover;
    object-position: left center;
  }

  .prevention-banner::after {
    background:
      linear-gradient(
        90deg,
        rgba(244, 240, 232, .02) 0%,
        rgba(244, 240, 232, .10) 30%,
        rgba(244, 240, 232, .58) 52%,
        rgba(244, 240, 232, .96) 100%
      );
  }

  .plans {
    padding: 72px 0;
  }

  .plans-line {
    display: grid;
  }

  .plan-logo,
  .plan-logo:first-child {
    border-left: none;
    border-right: none;
    border-bottom: 1px solid var(--line-light);
  }

  .plan-logo {
    min-width: 0;
    width: 100%;
  }

  .plans::before,
  .plans::after {
    width: 42px;
  }


  .nav {
    height: auto;
    min-height: 76px;
    padding-top: 14px;
    padding-bottom: 10px;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .header-mini-brand {
    align-self: start;
    padding-top: 2px;
  }

  .header-mini-brand strong {
    font-size: .86rem;
  }

  .header-mini-brand span {
    font-size: .72rem;
  }

  .header-whatsapp-btn {
    display: none;
  }

  .header-actions {
    gap: 0;
  }

  .burger {
    position: relative;
    top: auto;
    right: auto;
  }

  .menu-drawer {
    width: 100%;
    padding: 110px 28px 36px;
  }


.procedure-grid {
    grid-template-columns: 1fr;
  }


  .foot-top {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .foot-nav {
    justify-content: flex-start;
  }

.clinic-refined {
    padding: 72px 0;
  }

  .clinic-refined-copy h2 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .clinic-refined-photo img {
    aspect-ratio: 4 / 3.4;
  }

  .clinic-process {
    grid-template-columns: 1fr;
  }

  .clinic-process article {
    min-height: auto;
    padding: 24px 22px;
  }

  .clinic-process span {
    margin-bottom: 14px;
  }

  .clinic-process h3 {
    margin-bottom: 10px;
    font-size: .82rem;
    line-height: 1.35;
    letter-spacing: .04em;
  }

  .clinic-process p {
    font-size: .9rem;
    line-height: 1.55;
  }

  .clinic-process-head {
    padding-top: 22px;
    margin-top: 4px;
  }

  .related-posts {
    margin-top: 46px;
    padding-top: 34px;
  }

  .related-posts-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .related-post-image {
    height: 220px;
  }

  .related-post-content h3 {
    margin-bottom: 10px;
  }

  .menu-drawer a {
    font-size: .9rem;
    letter-spacing: .14em;
  }

  .blog-detail-hero {
    min-height: 360px;
    padding: 120px 0 64px;
  }

  .blog-detail-cover {
    height: 240px;
  }

  .wrap {
    width: min(100% - 30px, var(--max));
  }

  .credentials-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .credential {
    min-height: auto;
    padding-left: 16px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card-image {
    height: 220px;
  }

  .about {
    padding: 72px 0;
  }

  .specialties-cta {
    justify-content: flex-end;
    margin-top: 38px;
  }

  .specialties-cta-link {
    width: fit-content;
    min-width: 0;
    max-width: 100%;
    justify-content: flex-start;
    gap: 6px;
    white-space: nowrap;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 18px;
  }

  .blog-top-action {
    justify-content: flex-start;
  }

  .blog-all-link {
    width: 100%;
    min-width: 0;
  }

  .blog-list-hero {
    min-height: 340px;
    padding: 120px 0 62px;
  }

  .blog-search-box input {
    height: 54px;
  }

  .about::before,
  .about::after,
  .blog::before,
  .blog::after {
    width: 42px;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    width: min(100% - 32px, 1440px);
    min-height: 92vh;
    padding: 104px 0 58px;
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
  }

  .hero h1 {
    max-width: 360px;
    font-size: clamp(2.8rem, 15vw, 4.6rem);
    line-height: .92;
  }

  .hero .quote {
    max-width: 330px;
    font-size: .72rem;
    letter-spacing: .1em;
  }

  .hero-credentials {
    max-width: 320px;
    font-size: .64rem;
    letter-spacing: .09em;
  }

  .hero-bg img {
    object-position: 62% center;
  }

}
/* =========================
   MOBILE HOME - OPÇÃO 1: CONTRASTE
========================= */

@media (max-width: 800px) {
  .hero::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
      linear-gradient(
        180deg,
        rgba(244, 240, 232, .18) 0%,
        rgba(244, 240, 232, .08) 30%,
        rgba(7, 20, 16, .30) 58%,
        rgba(7, 20, 16, .78) 100%
      );
  }

  .hero-content {
    z-index: 4;
    justify-content: flex-end;
    padding: 104px 0 72px;
  }

  .hero h1 {
    max-width: 520px;
    font-size: clamp(3.35rem, 16.5vw, 5rem);
    color: var(--white);
    text-shadow: 0 3px 24px rgba(0,0,0,.52);
  }

  .hero .quote,
  .hero-credentials {
    color: rgba(255,255,255,.94);
    text-shadow: 0 2px 16px rgba(0,0,0,.48);
  }

  .hero-bg img {
    object-position: 62% center;
  }
}
@media (max-width: 500px) {
  .hero-content {
    width: min(100% - 28px, 1440px);
    padding-bottom: 62px;
  }

  .hero h1 {
    max-width: 340px;
    font-size: clamp(2.65rem, 13.4vw, 3.7rem);
    line-height: .95;
  }

  .hero .quote {
    max-width: 310px;
    font-size: .68rem;
    letter-spacing: .08em;
  }

  .hero-credentials {
    max-width: 300px;
    font-size: .6rem;
    letter-spacing: .07em;
  }
}
