﻿

@font-face {
  font-family: 'Qukies';
  src: url('../fonts/qukies.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy:        #1A2255;
  --navy-dark:   #131A42;
  --navy-mid:    #1E2860;
  --gold:        #B8952A;
  --gold-light:  #CBA840;
  --cream:       #F5EDE0;
  --cream-dark:  #EDE0CC;
  --off-white:   #FAF8F5;
  --white:       #FFFFFF;
  --text:        #1C1C1C;
  --text-muted:  #6B6866;
  --border:      #E8E0D6;

  --font-display: 'Qukies', 'Georgia', serif;
  --font-sans:    'DM Sans', system-ui, -apple-system, sans-serif;

  --fw-xl:    200;
  --fw-reg:   400;
  --fw-semi:  600;

  --gap-xs:   0.5rem;
  --gap-sm:   1rem;
  --gap-md:   2rem;
  --gap-lg:   4rem;
  --gap-xl:   7rem;
  --gap-2xl: 10rem;

  --radius:   6px;
  --radius-lg: 12px;

  --shadow-sm: 0 2px 10px rgba(26,34,85,0.06);
  --shadow-md: 0 8px 28px rgba(26,34,85,0.10);
  --shadow-lg: 0 20px 60px rgba(26,34,85,0.16);

  --transition: 0.28s ease;
  --max-w: 1200px;
  --pad: clamp(1.25rem, 5vw, 2.5rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  font-weight: var(--fw-reg);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

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

.eyebrow {
  font-family: var(--font-sans);
  font-weight: var(--fw-xl);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: var(--fw-reg);
  line-height: 1.15;
  color: var(--navy);
}

.section-title--light { color: var(--cream); }

.section-intro {
  font-family: var(--font-sans);
  font-weight: var(--fw-reg);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  max-width: 580px;
}

.section-intro--light { color: rgba(245,237,224,0.78); }

.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  border: none;
  margin: var(--gap-sm) 0 var(--gap-md);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: var(--fw-semi);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184,149,42,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--outline-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,237,224,0.5);
}
.btn--outline-light:hover {
  background: rgba(245,237,224,0.12);
  border-color: var(--cream);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.btn--ghost::after {
  content: '→';
  font-size: 1rem;
  transition: transform var(--transition);
}
.btn--ghost:hover::after { transform: translateX(4px); }

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 1.5rem 0;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  padding: 0.9rem 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
}

.navbar__logo {
  flex-shrink: 0;
  height: 38px;
  overflow: hidden;
  display: block;
}
.navbar__logo img {
  height: 370px;
  width: auto;
  display: block;
  margin-top: -166px;
  transition: opacity var(--transition);
}

.navbar__logo-hero     { display: block; }
.navbar__logo-scrolled { display: none; }

.navbar.scrolled .navbar__logo-hero     { display: none; }
.navbar.scrolled .navbar__logo-scrolled { display: block; }

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.navbar__nav a {
  font-family: var(--font-sans);
  font-weight: var(--fw-xl);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,237,224,0.85);
  transition: color var(--transition);
  white-space: nowrap;
}
.navbar__nav a:hover { color: var(--cream); }

.navbar.scrolled .navbar__nav a { color: var(--text-muted); }
.navbar.scrolled .navbar__nav a:hover { color: var(--navy); }

.navbar .btn--outline {
  font-size: 0.75rem;
  padding: 0.6rem 1.4rem;
  color: var(--cream);
  border-color: rgba(245,237,224,0.5);
  transition: all var(--transition);
}
.navbar .btn--outline:hover {
  background: rgba(245,237,224,0.1);
  border-color: var(--cream);
  color: var(--cream);
}
.navbar.scrolled .btn--outline {
  color: var(--navy);
  border-color: var(--navy);
}
.navbar.scrolled .btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: all var(--transition);
}
.navbar.scrolled .navbar__hamburger span { background: var(--navy); }
.navbar__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition);
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.mobile-nav nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
.mobile-nav nav a {
  font-family: var(--font-sans);
  font-weight: var(--fw-xl);
  font-size: 1.1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color var(--transition);
}
.mobile-nav nav a:hover { color: var(--gold); }
.mobile-nav .btn--gold { margin-top: 1rem; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(19,26,66,0.88) 0%,
    rgba(19,26,66,0.65) 40%,
    rgba(19,26,66,0.20) 65%,
    rgba(19,26,66,0.00) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 11rem;
  padding-bottom: 5rem;
  max-width: 640px;
}

.hero__logo {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin-bottom: 1.5rem;
  opacity: 0.97;
  filter: drop-shadow(0 2px 14px rgba(0,0,0,0.7));
}

.hero__location {
  font-family: var(--font-sans);
  font-weight: var(--fw-xl);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  opacity: 0.85;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: var(--fw-reg);
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero__sub {
  font-family: var(--font-sans);
  font-weight: var(--fw-xl);
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(245,237,224,0.78);
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.hero__ctas {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero__scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,237,224,0.45);
  font-weight: var(--fw-xl);
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(245,237,224,0.45), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

.sobre {
  padding: var(--gap-xl) 0;
  background: var(--off-white);
}

.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--gap-lg);
  align-items: center;
}

.sobre__text .eyebrow { margin-bottom: 1rem; }
.sobre__text .section-title { margin-bottom: 0; }
.sobre__text .divider { margin: 1.25rem 0 1.5rem; }

.sobre__body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.sobre__body p + p { margin-top: 1rem; }

.sobre__creds {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.sobre__cred {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.87rem;
  color: var(--text);
  font-weight: var(--fw-reg);
}
.sobre__cred::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.45rem;
}

.sobre__foto {
  position: relative;
}
.sobre__foto img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
}
.sobre__foto::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
}

.areas {
  padding: var(--gap-xl) 0;
  background: var(--white);
}

.areas__head {
  text-align: center;
  margin-bottom: var(--gap-lg);
}
.areas__head .eyebrow { margin-bottom: 1rem; }
.areas__head .section-title { margin-bottom: 0.75rem; }
.areas__head .divider { margin-inline: auto; }
.areas__head .section-intro { margin-inline: auto; margin-top: 1rem; }

.areas__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.area-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border-top: 3px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}
.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.area-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(184,149,42,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.area-card__icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; }

.area-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: var(--fw-reg);
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.area-card__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text);
  font-weight: var(--fw-reg);
}

.programas {
  padding: var(--gap-xl) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.programas::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,149,42,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.programas__head {
  text-align: center;
  margin-bottom: var(--gap-lg);
}
.programas__head .eyebrow { margin-bottom: 1rem; }
.programas__head .divider {
  background: rgba(184,149,42,0.5);
  margin-inline: auto;
}
.programas__head .section-intro { margin-inline: auto; margin-top: 1rem; }

.programas__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.programa-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,237,224,0.1);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: background var(--transition), border-color var(--transition);
}
.programa-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(184,149,42,0.3);
}

.programa-card__logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.75rem;
}
.programa-card__logo img {
  height: 36px;
  width: auto;
  display: block;
  opacity: 0.9;
}
.programa-card__logo span {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.12em;
  line-height: 1;
}

.programa-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: var(--fw-reg);
  color: var(--cream);
  line-height: 1.2;
}

.programa-card__desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(245,237,224,0.65);
  font-weight: var(--fw-xl);
}

.programa-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.programa-card__tag {
  font-size: 0.72rem;
  font-weight: var(--fw-semi);
  letter-spacing: 0.08em;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(184,149,42,0.35);
  border-radius: 100px;
  color: rgba(245,237,224,0.6);
}

.programa-card__cta {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(245,237,224,0.08);
}

.tecnicas {
  padding: var(--gap-xl) 0;
  background: var(--off-white);
}

.tecnicas__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: start;
}

.tecnicas__text .eyebrow { margin-bottom: 1rem; }
.tecnicas__text .section-title { margin-bottom: 0; }
.tecnicas__text .divider { margin: 1.25rem 0 1.5rem; }

.tecnicas__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.tecnica-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: var(--fw-reg);
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.tecnica-item:hover { box-shadow: var(--shadow-md); }
.tecnica-item::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.credenciais {
  padding: 4rem 0;
  background: var(--navy-dark);
}

.credenciais__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 3rem;
}

.credencial-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 0;
  position: relative;
}
.credencial-item + .credencial-item::before {
  content: '';
  position: absolute;
  left: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 36px;
  background: rgba(245,237,224,0.12);
}

.credencial-item__label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: var(--fw-xl);
  margin-bottom: 0.25rem;
}
.credencial-item__value {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--cream);
  line-height: 1.3;
}

.hospitais {
  padding: var(--gap-xl) 0;
  background: var(--white);
}

.hospitais__head {
  text-align: center;
  margin-bottom: var(--gap-lg);
}
.hospitais__head .eyebrow { margin-bottom: 1rem; }
.hospitais__head .divider { margin-inline: auto; }

.hospitais__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.hospital-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.hospital-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.hospital-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(184,149,42,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.hospital-card__icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; }

.hospital-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.hospital-card__local {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: var(--fw-xl);
  letter-spacing: 0.05em;
}
.hospital-card__map {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(184,149,42,0.35);
  padding-bottom: 1px;
  transition: color var(--transition), border-color var(--transition);
}
.hospital-card__map:hover {
  color: var(--navy);
  border-color: var(--navy);
}

.marca-section {
  position: relative;
  overflow: hidden;
  height: 480px;
  background: var(--navy-dark);
}

.marca-section__art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.marca-section__art img {
  position: absolute;
  top: 50%;
  left: calc(50% - 3.4vw);
  height: 107vw;
  width: auto;
  transform: translate(-50%, -50%) rotate(90deg);
}

.marca-section__overlay { display: none; }

.marca-section__content { display: none; }

@media (max-width: 768px) {
  .marca-section { height: auto; padding: 4rem 0; }
  .marca-section__art img { height: 800px; }
  .marca-section__overlay {
    background: rgba(19,26,66,0.75);
  }
  .marca-section__content { justify-content: flex-start; }
}

.equipe {
  padding: var(--gap-xl) 0;
  background: #f3e9d3;
  position: relative;
  overflow: hidden;
}
.equipe__art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.equipe__art img {
  position: absolute;
  top: 50%;
  left: calc(50% - 3.4vw);
  height: 107vw;
  width: auto;
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0.55;
}
.equipe .container {
  position: relative;
  z-index: 1;
}
.equipe__head {
  text-align: center;
  margin-bottom: 4rem;
}
.equipe__grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 3rem;
  flex-wrap: wrap;
}
.equipe-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 340px;
  flex: 0 1 340px;
}
.equipe-card__foto {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(184,149,42,0.5);
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-md);
}
.equipe-card__foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.equipe-card__info {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 0.9rem 1.25rem 1.1rem;
  width: 100%;
  flex: 1;
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow:
    0 2px 0 rgba(184,149,42,0.25),
    0 6px 16px rgba(0,0,0,0.08),
    0 16px 40px rgba(0,0,0,0.07),
    inset 0 1px 0 rgba(255,255,255,1);
}
.equipe-card__nome {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: var(--fw-reg);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.45rem;
}
.equipe-card__cargo {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 200;
  white-space: nowrap;
}
.equipe-card__registro {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 200;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .equipe__grid { gap: 2.5rem; }
  .equipe-card { max-width: 280px; }
}

.cta-final {
  padding: var(--gap-xl) 0;
  background: var(--cream);
  text-align: center;
}

.cta-final__inner { max-width: 600px; margin-inline: auto; }
.cta-final .eyebrow { margin-bottom: 1rem; }
.cta-final .section-title { color: var(--navy); margin-bottom: 1rem; }
.cta-final .section-title--cream { color: var(--navy); }
.cta-final__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  font-weight: var(--fw-xl);
  margin-bottom: 2.5rem;
}
.cta-final__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer {
  background: var(--navy);
  padding: 5rem 0 2.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr;
  gap: var(--gap-lg);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,237,224,0.08);
  margin-bottom: 2rem;
}

.footer__brand .footer__logo-wrapper {
  height: 110px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.footer__brand .footer__logo-wrapper img {
  height: 280px;
  width: auto;
  display: block;
  margin-top: -85px;
}
.footer__brand p {
  font-size: 0.8rem;
  color: rgba(245,237,224,0.4);
  font-weight: var(--fw-xl);
  line-height: 1.7;
}

.footer__nav-title, .footer__contact-title {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: var(--fw-semi);
  margin-bottom: 1.25rem;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer__nav a {
  font-size: 0.875rem;
  color: rgba(245,237,224,0.55);
  font-weight: var(--fw-xl);
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--cream); }

.footer__contact p {
  font-size: 0.875rem;
  color: rgba(245,237,224,0.55);
  font-weight: var(--fw-xl);
  line-height: 1.7;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy {
  font-size: 0.75rem;
  color: rgba(245,237,224,0.25);
  font-weight: var(--fw-xl);
}
.footer__disclaimer {
  font-size: 0.72rem;
  color: rgba(245,237,224,0.2);
  max-width: 480px;
  text-align: right;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .areas__grid { grid-template-columns: repeat(2, 1fr); }
  .sobre__grid { grid-template-columns: 1fr; }
  .sobre__foto { order: -1; }
  .sobre__foto img { height: 400px; }
  .tecnicas__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar__nav, .navbar > .container > .btn { display: none; }
  .navbar__hamburger { display: flex; }

  .navbar__logo img { height: 260px; margin-top: -111px; }

  .hero__content { max-width: 100%; padding-top: 14rem; }
  .hero__title { font-size: 2.4rem; }

  .areas__grid { grid-template-columns: 1fr; }
  .programas__grid { grid-template-columns: 1fr; }
  .programa-card { padding: 2rem 1.5rem; }
  .programa-card__logo span { font-size: 1.15rem; }
  .hospitais__grid { grid-template-columns: 1fr; }
  .tecnicas__list { grid-template-columns: 1fr; }

  .credenciais__inner { flex-direction: column; gap: 0; }
  .credencial-item + .credencial-item::before { display: none; }

  .footer__grid { grid-template-columns: 1fr; gap: var(--gap-md); }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__disclaimer { text-align: left; }
}

.lp-header {
  background: var(--navy);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(245,237,224,0.08);
}
.lp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-header__logo {
  height: 32px;
  overflow: hidden;
  display: block;
}
.lp-header__logo img {
  height: 311px;
  width: auto;
  display: block;
  margin-top: -139px;
}
.lp-header__brand {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,237,224,0.4);
  font-weight: var(--fw-xl);
}

.lp-hero {
  padding: 4.5rem 0 4rem;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.lp-hero::before {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,149,42,0.06) 0%, transparent 70%);
}

.lp-hero__content { max-width: 720px; position: relative; z-index: 1; }

.lp-hero__logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.25rem;
}
.lp-hero__logo img {
  height: 32px;
  width: auto;
  display: block;
  opacity: 0.95;
}
.lp-hero__logo span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(245,237,224,0.9);
  letter-spacing: 0.18em;
  line-height: 1;
}

.lp-cta__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.lp-cta__logo img {
  height: 32px;
  width: auto;
  display: block;
}
.lp-cta__logo span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.18em;
  line-height: 1;
}

.lp-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: var(--fw-reg);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.lp-hero__sub {
  font-size: 1.05rem;
  color: rgba(245,237,224,0.7);
  font-weight: var(--fw-xl);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.lp-section {
  padding: 6rem 0;
}
.lp-section--light { background: var(--off-white); }
.lp-section--white { background: var(--white); }
.lp-section--navy  { background: var(--navy); }
.lp-section--cream { background: var(--cream); }

.lp-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: start;
}

.lp-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.lp-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.925rem;
  color: var(--text-muted);
  font-weight: var(--fw-xl);
  line-height: 1.6;
}
.lp-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.45rem;
}
.lp-list--light li { color: rgba(245,237,224,0.7); }
.lp-list--light li::before { background: var(--gold); }

.lp-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.lp-feature {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
.lp-feature__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.lp-feature__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: var(--fw-xl);
  line-height: 1.65;
}

.lp-medico {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.lp-medico__foto img {
  width: 200px;
  height: 240px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
}
.lp-medico__info { flex: 1; }
.lp-medico__name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.lp-medico__spec {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: var(--fw-semi);
  margin-bottom: 1rem;
}
.lp-medico__bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: var(--fw-xl);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.lp-medico__creds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.lp-medico__cred-badge {
  font-size: 0.72rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
  font-weight: var(--fw-xl);
}

.lp-cta {
  padding: 6rem 0;
  background: var(--navy);
  text-align: center;
}
.lp-cta__inner { max-width: 560px; margin-inline: auto; }
.lp-cta .section-title { color: var(--cream); margin-bottom: 1rem; }
.lp-cta__text {
  font-size: 0.95rem;
  color: rgba(245,237,224,0.72);
  font-weight: var(--fw-xl);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.lp-cta__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: rgba(26,34,85,0.35);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.lp-footer {
  background: var(--navy-dark);
  padding: 2.5rem 0;
  text-align: center;
}
.lp-footer__logo {
  height: 95px;
  overflow: hidden;
  margin: 0 auto 1rem;
}
.lp-footer__logo img {
  height: 280px;
  width: auto;
  display: block;
  margin-top: -92px;
}
.lp-footer p {
  font-size: 0.75rem;
  color: rgba(245,237,224,0.25);
  font-weight: var(--fw-xl);
}

@media (max-width: 768px) {
  .lp-grid-2 { grid-template-columns: 1fr; }
  .lp-feature-grid { grid-template-columns: 1fr; }
  .lp-medico { flex-direction: column; align-items: stretch; }
  .lp-medico__foto img { width: 100%; height: 300px; }

  .lp-header__logo img { height: 260px; margin-top: -114px; }
  .lp-header__brand { display: none; }
}

