﻿:root {
  --bg: #f3f6fa;
  --surface: #ffffff;
  --surface-soft: #eef3f8;
  --ink: #14243a;
  --ink-soft: #41566f;
  --brand: #0f4b78;
  --brand-strong: #08324f;
  --accent: #1f8f70;
  --line: #d8e2ec;
  --shadow-soft: 0 18px 40px rgba(20, 36, 58, 0.08);
  --shadow-strong: 0 26px 60px rgba(8, 27, 42, 0.2);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Noto Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background:
    radial-gradient(circle at 8% 8%, #e7eef7 0, transparent 32%),
    radial-gradient(circle at 92% 4%, #dce9f6 0, transparent 34%),
    var(--bg);
}

h1,
h2,
h3 {
  font-family: "Noto Serif", Georgia, serif;
  line-height: 1.12;
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(2rem, 4.6vw, 3.65rem);
}

h2 {
  font-size: clamp(1.7rem, 3.1vw, 2.35rem);
}

h3 {
  font-size: 1.22rem;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.hero {
  position: relative;
  padding-bottom: 3rem;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
}

.brand__logo {
  width: 118px;
  border-radius: 0;
  box-shadow: 0 10px 20px rgba(13, 27, 45, 0.12);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.9fr);
  gap: 2rem;
  align-items: center;
  padding: 1.5rem 0 0;
}

.eyebrow,
.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 0.85rem;
}

.hero__lead {
  font-size: clamp(1.05rem, 2.1vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 58ch;
}

.hero__trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 1.35rem 0 1.55rem;
}

.trust__item {
  background: linear-gradient(160deg, #ffffff, #f2f7fb);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 0.9rem;
}

.trust__item strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
}

.trust__item span {
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0.8rem;
}

.hero__note {
  display: inline-block;
  color: #0c6f51;
  font-weight: 800;
  background: rgba(31, 143, 112, 0.1);
  border: 1px solid rgba(31, 143, 112, 0.25);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
}

.hero__figure {
  margin: 0;
  position: relative;
}

.doctor-card {
  position: relative;
  isolation: isolate;
  padding: 0.2rem 0 0;
  text-align: center;
}

.doctor-portrait {
  position: relative;
  width: min(100%, 452px);
  margin: 0 auto;
}

.doctor-portrait::after {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: -1%;
  height: 36%;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(243, 246, 250, 0) 0%,
    rgba(243, 246, 250, 0.86) 66%,
    var(--bg) 100%
  );
}

.doctor-card::before {
  content: "";
  position: absolute;
  inset: 15% 8% 20%;
  z-index: -1;
  border-radius: 48% 52% 44% 56% / 54% 46% 58% 42%;
  background:
    radial-gradient(circle at 28% 26%, rgba(255, 255, 255, 0.92) 0, rgba(255, 255, 255, 0) 62%),
    linear-gradient(140deg, rgba(221, 236, 248, 0.92), rgba(208, 230, 246, 0.72));
  box-shadow: 0 34px 64px rgba(12, 43, 69, 0.22);
}

.hero__doctor {
  width: 100%;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 20px 34px rgba(9, 35, 56, 0.28));
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 80%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 80%, rgba(0, 0, 0, 0) 100%);
}

.doctor-card figcaption {
  display: flex;
  flex-direction: column;
  padding: 0.95rem 0 0.55rem;
}

.doctor-card strong {
  font-size: 1.05rem;
}

.doctor-card span {
  color: var(--ink-soft);
}

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.72rem 1.2rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(130deg, var(--brand), #1b678f);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(9, 38, 61, 0.22);
  background: linear-gradient(130deg, #1b678f, var(--brand));
}

.btn--big {
  padding: 0.86rem 1.55rem;
}

.btn--small {
  padding: 0.58rem 0.98rem;
  font-size: 0.92rem;
}

.btn--ghost {
  color: var(--brand-strong);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(15, 75, 120, 0.26);
}

.text-link {
  color: var(--brand-strong);
  text-decoration: none;
  border-bottom: 2px solid rgba(15, 75, 120, 0.35);
  font-weight: 700;
}

.section {
  padding: clamp(3rem, 7vw, 5.4rem) 0;
}

.section--soft {
  background: linear-gradient(180deg, #ffffff, #f7fafe);
}
.experience-intro {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.experience-grid--bottom {
  margin-top: 1rem;
}

.grid {
  display: grid;
  gap: 1.8rem;
}

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

.list {
  list-style: none;
  padding: 0;
  margin: 1.15rem 0 0;
}

.list li {
  background: #f2f7fc;
  border: 1px solid #d8e2ec;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 0.66rem 0.8rem;
  margin-bottom: 0.58rem;
}

.card {
  background: linear-gradient(170deg, #f9fcff, #ffffff);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.45rem;
  box-shadow: var(--shadow-soft);
}

.card__label {
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--brand);
}

.card--highlight {
  border-top: 5px solid var(--accent);
}

.steps {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.step {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.step__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 0.65rem;
  background: linear-gradient(130deg, var(--brand), var(--accent));
}

.section--split {
  background:
    radial-gradient(circle at 100% 0%, #dfeaf6 0, transparent 48%),
    #f5f9fd;
}

#consultorio .grid--2 {
  align-items: stretch;
}

.photo-wrap {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.address-card {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 255, 0.92));
  border: 1px solid rgba(121, 160, 191, 0.35);
  border-left: 4px solid rgba(15, 75, 120, 0.85);
  border-radius: 14px;
  padding: 0.95rem 1.05rem;
  margin: 1rem 0 1.1rem;
  box-shadow: 0 10px 22px rgba(10, 45, 71, 0.1);
}

.address-card p {
  margin: 0;
  color: #1a3248;
}

.address-card p + p {
  margin-top: 0.45rem;
  padding-top: 0.45rem;
  border-top: 1px dashed rgba(119, 153, 180, 0.35);
}

.address-card strong {
  color: var(--brand-strong);
}

.align-center {
  align-items: center;
}

.section--contact {
  background:
    radial-gradient(circle at 12% 14%, #d7e8f9 0, transparent 38%),
    radial-gradient(circle at 90% 88%, #cee6f4 0, transparent 44%),
    #eaf3fb;
}

.center {
  text-align: center;
}

.contact-box {
  max-width: 860px;
}

.contact__text {
  max-width: 660px;
  margin-inline: auto;
  font-size: 1.1rem;
  color: #20364d;
}

.socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.1rem;
}

.social {
  min-width: 170px;
  padding: 0.85rem 1rem;
  text-align: center;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
}

.social--wa {
  background: linear-gradient(135deg, #23b25e, #167c43);
}

.social--ig {
  background: linear-gradient(135deg, #1c3564, #355bb2);
}

.footer {
  background: #0d2035;
  color: #d8e6f5;
  padding: 1.2rem 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer__left {
  display: flex;
  align-items: center;
  gap: 0.72rem;
}

.footer__text {
  text-align: left;
}

.footer__logo {
  width: 42px;
  border-radius: 0;
}

.footer__text p {
  margin: 0;
}

.footer__rights {
  font-size: 0.85rem;
  color: #b7ccdf;
}

.footer__credit {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
  font-size: 0.9rem;
  color: #c2d7eb;
}

.footer__credit-logo {
  width: 54px;
  height: auto;
}

@media (max-width: 720px) {
  .footer__inner,
  .footer__left,
  .footer__credit {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

.floating-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 20;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #18a55b, #0f7b42);
  padding: 0.84rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(10, 52, 29, 0.28);
}

.floating-cta:hover {
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .hero__content,
  .grid--2,
  .steps,
  .hero__trust,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .hero__figure {
    order: -1;
  }

  .doctor-card {
    max-width: 440px;
    margin-inline: auto;
  }

  .nav__actions .btn--ghost {
    display: none;
  }
}

@media (min-width: 981px) {
  .footer__inner {
    padding-right: 7.5rem;
  }
}

@media (max-width: 620px) {
  .floating-cta {
    right: 0.7rem;
    left: 0.7rem;
    text-align: center;
  }

  .nav {
    gap: 0.6rem;
  }

  .brand__logo {
    width: 102px;
  }
}



