:root {
  --bg: #fbfcfd;
  --surface: #ffffff;
  --surface-soft: #f3f8fb;
  --text: #0f2633;
  --muted: #5c6f7a;
  --primary: #1c7c8c;
  --primary-dark: #0d5262;
  --accent: #c98710;
  --accent-soft: #fff4db;
  --line: #dbe7ed;
  --shadow: 0 22px 60px rgba(16, 52, 68, 0.12);
  --radius: 18px;
  --container: min(1160px, calc(100vw - 44px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
  padding: 12px max(22px, calc((100vw - 1160px) / 2));
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(219, 231, 237, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 220px;
}

.brand img {
  width: 74px;
  height: 58px;
  object-fit: contain;
  object-position: center;
  padding: 5px;
  border-radius: 10px;
  background: transparent;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 0.84rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
  flex-wrap: nowrap;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
}

.site-nav a:hover {
  color: var(--primary-dark);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  cursor: pointer;
}

.nav-cta {
  white-space: nowrap;
  flex: 0 0 auto;
}

.nav-cta,
.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white !important;
  box-shadow: 0 14px 32px rgba(28, 124, 140, 0.26);
}

.button-primary:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(28, 124, 140, 0.32);
}

.button-secondary {
  color: var(--primary-dark);
  background: white;
  border-color: var(--line);
}

.button-light {
  color: var(--primary-dark);
  background: white;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(16, 52, 68, 0.08);
}

.menu-toggle img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.section,
.section-band {
  padding: 92px 0;
}

.section-soft {
  background: var(--surface-soft);
}

.hero {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 82% 18%, rgba(201, 135, 16, 0.16), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f1f8fb 58%, #e9f5f6 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-lead {
  max-width: 680px;
  color: var(--primary-dark);
  font-size: 1.26rem;
  font-weight: 750;
}

.hero-support,
.section-heading p,
.about-copy p,
.location-copy p,
.mid-cta p,
.final-cta p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 26px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  max-width: 640px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 26px;
  color: var(--text);
  font-weight: 700;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-visual {
  justify-self: stretch;
}

.doctor-placeholder {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
}

.doctor-placeholder img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: contain;
  object-position: center;
  padding: 42px;
  background: #ffffff;
}

.doctor-placeholder .doctor-photo {
  min-height: 560px;
  padding: 0;
  object-fit: cover;
  object-position: center top;
  background: #101010;
}

.placeholder-label {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px;
  border: 1px dashed rgba(13, 82, 98, 0.32);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-dark);
  font-weight: 900;
  text-align: center;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.cards-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.benefit-card,
.gallery-card,
.map-card,
.photo-placeholder,
.schedule-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(16, 52, 68, 0.08);
}

.service-card {
  padding: 24px;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 900;
  font-size: 1.2rem;
}

.service-card p,
.benefit-card span,
.faq-list p {
  color: var(--muted);
}

.service-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--primary-dark);
  font-weight: 900;
  text-decoration: none;
}

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

.benefit-card {
  padding: 22px;
}

.benefit-card strong,
.benefit-card span {
  display: block;
}

.benefit-card strong {
  margin-bottom: 8px;
}

.about-grid,
.location-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 48px;
  align-items: center;
}

.about-image {
  min-height: 460px;
}

.photo-placeholder,
.gallery-placeholder {
  display: grid;
  place-items: center;
  min-height: 460px;
  padding: 24px;
  color: var(--primary-dark);
  background:
    linear-gradient(135deg, rgba(28, 124, 140, 0.1), rgba(201, 135, 16, 0.13)),
    #ffffff;
  text-align: center;
  font-weight: 900;
}

.profile-photo {
  display: block;
  width: 100%;
  min-height: 460px;
  height: 100%;
  padding: 0;
  object-fit: cover;
  object-position: center top;
}

.profile-photo-about {
  aspect-ratio: 4 / 5;
}

.about-list,
.info-list {
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.about-list li,
.info-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.about-list li::before,
.info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-card {
  overflow: hidden;
  margin: 0;
}

.gallery-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-weight: 800;
}

.mid-cta {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
}

.mid-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.mid-cta .button-light {
  flex: 0 0 auto;
  min-width: max-content;
}

.mid-cta .eyebrow,
.mid-cta p,
.final-cta p {
  color: rgba(255, 255, 255, 0.82);
}

.location-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
}

.map-card {
  overflow: hidden;
  min-height: 430px;
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 430px;
  border: 0;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.schedule-card {
  min-height: 180px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  border-top: 4px solid var(--primary);
}

.schedule-card span {
  color: var(--muted);
  font-weight: 900;
}

.schedule-card strong {
  color: var(--primary-dark);
  font-size: 1.06rem;
  line-height: 1.25;
}

.schedule-card-short {
  border-top-color: var(--accent);
}

.schedule-card-muted {
  background: #eef4f6;
  border-top-color: #b7c9d0;
}

.schedule-card-muted strong {
  color: var(--muted);
}

.schedule-note {
  max-width: 820px;
  margin: 24px auto 0;
  color: var(--muted);
  text-align: center;
  font-weight: 750;
}

.faq-wrap {
  max-width: 920px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
}

.final-cta {
  padding: 92px 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(201, 135, 16, 0.18), transparent 28%),
    linear-gradient(135deg, #0d5262, #123648);
  color: white;
  text-align: center;
}

.final-cta-inner {
  max-width: 760px;
}

.site-footer {
  padding: 48px 0 22px;
  background: #071f2a;
  color: white;
}

.footer-brand-wide {
  padding-bottom: 34px;
}

.footer-brand-wide img {
  width: min(1040px, 100%);
  max-height: 180px;
  object-fit: contain;
  margin: 0 auto;
  padding: 22px 28px;
  border-radius: 22px;
  background: #ffffff;
  filter: drop-shadow(0 18px 38px rgba(0, 0, 0, 0.22));
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: start;
  max-width: 1040px;
}

.footer-grid address {
  max-width: 680px;
}

.site-footer p,
.site-footer address,
.footer-bottom {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 28px;
  max-width: 1040px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  text-align: center;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 83px;
  height: 83px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  text-decoration: none;
  box-shadow: none;
  filter: drop-shadow(0 12px 22px rgba(36, 211, 102, 0.32));
  cursor: pointer;
  animation: whatsappGlow 2.4s ease-in-out infinite;
  transition: transform 180ms ease, filter 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px) scale(1.08);
  filter: drop-shadow(0 16px 28px rgba(36, 211, 102, 0.44)) drop-shadow(0 0 12px rgba(36, 211, 102, 0.34));
}

.floating-whatsapp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 0;
}

@keyframes whatsappGlow {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 12px 22px rgba(36, 211, 102, 0.32));
  }

  50% {
    transform: scale(1.06);
    filter: drop-shadow(0 16px 28px rgba(36, 211, 102, 0.44)) drop-shadow(0 0 10px rgba(36, 211, 102, 0.28));
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .site-header {
    align-items: center;
    flex-wrap: wrap;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .site-nav {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 0 4px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 10px 0;
  }

  .nav-cta {
    margin-top: 4px;
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
    flex-wrap: wrap;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .site-nav {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 0 4px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 10px 0;
  }

  .nav-cta {
    margin-top: 4px;
  }

  .hero-grid,
  .about-grid,
  .location-grid,
  .mid-cta-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .benefit-grid,
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .gallery-card:last-child {
    grid-column: 1 / -1;
  }

  .mid-cta-inner {
    display: grid;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .doctor-placeholder,
  .doctor-placeholder img,
  .doctor-placeholder .doctor-photo {
    min-height: 0;
    height: 500px;
  }

  .profile-photo {
    min-height: 0;
    height: 440px;
  }

  .doctor-placeholder .doctor-photo,
  .profile-photo {
    object-fit: cover;
    object-position: center top;
  }
}

@media (max-width: 640px) {
  .section,
  .section-band {
    padding: 66px 0;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 58px;
    height: 48px;
  }

  .hero-points,
  .benefit-grid,
  .cards-grid,
  .gallery-grid,
  .schedule-grid {
    grid-template-columns: 1fr;
  }

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

  .doctor-placeholder,
  .photo-placeholder {
    min-height: 340px;
  }

  .gallery-card:last-child {
    grid-column: auto;
  }

  .doctor-placeholder,
  .doctor-placeholder img,
  .doctor-placeholder .doctor-photo {
    min-height: 0;
    height: 430px;
  }

  .profile-photo {
    min-height: 0;
    height: 380px;
  }

  .doctor-placeholder .doctor-photo,
  .profile-photo {
    object-fit: cover;
    object-position: center top;
  }


  .floating-whatsapp {
    left: auto;
    right: 16px;
    bottom: 16px;
    width: 83px;
    height: 83px;
  }
}

@media (max-width: 420px) {
  .site-header {
    gap: 12px;
  }

  .brand span {
    display: none;
  }

  .brand {
    flex: 0 1 auto;
  }
}
