/*
Theme Name: Dr Eder Site
Theme URI: https://edernazario.com
Author: Dr. Eder Nazário
Author URI: https://edernazario.com
Description: Tema WordPress customizado para site médico de atendimento online em saúde mental.
Version: 1.0.61
Text Domain: dr-eder-site
*/

:root {
  --navy: #0B1F3A;
  --gold: #C9A84C;
  --off-white: #F0EDE4;
  --ink: #12233A;
  --mist: #F8F6EF;
  --white: #FFFFFF;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--off-white);
  color: var(--ink);
  font-family: "Barlow", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  z-index: 999;
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 4px;
}

.skip-link:focus {
  left: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(11, 31, 58, 0.1);
  background: rgba(240, 237, 228, 0.94);
  backdrop-filter: blur(12px);
}

.reveal-ready .reveal-on-scroll {
  opacity: 1;
  transform: none;
}

.reveal-ready .reveal-on-scroll.is-visible {
  animation: dr-eder-reveal 360ms ease both;
}

@keyframes dr-eder-reveal {
  from {
    opacity: 0.92;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-ready .reveal-on-scroll {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 20px);
}

.site-header .button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  box-shadow: none;
  line-height: 1;
}

.brand--image {
  flex: 0 0 auto;
  flex-direction: row;
  justify-content: flex-start;
}

.brand__logo {
  display: block;
  width: auto;
  height: 44px;
  max-height: 44px;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  object-fit: contain;
}

.brand__wordmark {
  display: inline-flex;
  align-items: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  white-space: nowrap;
  transform: translateY(-1px);
}

.brand__name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
}

.brand__tagline {
  margin-top: 6px;
  color: rgba(11, 31, 58, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: none;
  min-width: 0;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.6vw, 20px);
  color: rgba(11, 31, 58, 0.76);
  font-size: 0.94rem;
  font-weight: 600;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.site-nav__dropdown {
  position: relative;
}

.site-nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: rgba(11, 31, 58, 0.76);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 0;
}

.site-nav__dropdown-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.site-nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 50;
  display: grid;
  min-width: 210px;
  transform: translate(-50%, 8px);
  border: 1px solid rgba(11, 31, 58, 0.1);
  border-radius: 8px;
  background: rgba(250, 248, 242, 0.98);
  box-shadow: 0 24px 70px rgba(11, 31, 58, 0.13);
  opacity: 0;
  padding: 10px;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.site-nav__dropdown:hover .site-nav__dropdown-menu,
.site-nav__dropdown:focus-within .site-nav__dropdown-menu {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.site-nav__dropdown-menu a {
  border-radius: 6px;
  color: var(--navy);
  padding: 9px 10px;
  white-space: nowrap;
}

.site-nav__dropdown-menu a:hover {
  background: rgba(201, 168, 76, 0.14);
}

.site-nav__utility {
  color: var(--navy);
  font-weight: 700;
}

.button,
.wp-block-button__link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 13px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.wp-block-button__link:hover {
  transform: translateY(-1px);
}

.button--primary,
.wp-block-button__link {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 24px 80px rgba(11, 31, 58, 0.12);
}

.button--primary:hover {
  background: #d5b85d;
}

.button--secondary {
  background: var(--navy);
  color: var(--white);
}

.button--outline {
  border-color: rgba(11, 31, 58, 0.2);
  background: rgba(255, 255, 255, 0.42);
  color: var(--navy);
}

.button--light {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.lead-recovery {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: min(360px, calc(100vw - 36px));
  border: 1px solid rgba(201, 168, 76, 0.42);
  border-radius: 8px;
  background: rgba(240, 237, 228, 0.97);
  box-shadow: 0 24px 80px rgba(11, 31, 58, 0.18);
  padding: 18px;
}

.lead-recovery p {
  margin: 0;
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.55;
}

.lead-recovery .button {
  min-height: 42px;
  margin-top: 14px;
  padding: 11px 18px;
  font-size: 0.9rem;
}

.lead-recovery__close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  background: transparent;
  color: rgba(11, 31, 58, 0.62);
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
}

.hero,
.visual-panel {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(11, 31, 58, 0.96), rgba(11, 31, 58, 0.78)),
    url("data:image/svg+xml,%3Csvg width='1400' height='900' viewBox='0 0 1400 900' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='1400' height='900' fill='%230B1F3A'/%3E%3Cg fill='none' stroke='%23C9A84C' stroke-opacity='.22' stroke-width='1.3'%3E%3Cpath d='M162 652C280 476 431 384 615 377c205-8 330 101 494 9 89-50 134-132 157-203'/%3E%3Cpath d='M113 523c148-111 308-143 480-96 210 57 335 227 527 177 76-20 135-68 177-139'/%3E%3Cpath d='M232 287c118 90 261 111 428 62 155-45 275-113 421-48 78 34 135 90 171 168'/%3E%3C/g%3E%3Cg fill='%23C9A84C' fill-opacity='.34'%3E%3Ccircle cx='288' cy='548' r='4'/%3E%3Ccircle cx='616' cy='377' r='4'/%3E%3Ccircle cx='1037' cy='416' r='4'/%3E%3Ccircle cx='493' cy='412' r='3'/%3E%3Ccircle cx='1176' cy='585' r='3'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center;
  background-size: cover;
}

.hero__grid,
.page-hero__grid {
  display: grid;
  gap: 38px;
  align-items: center;
}

.hero__media {
  display: flex;
  max-width: 340px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.hero__portrait,
.sobre-photo__image {
  display: block;
  width: 100%;
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(11, 31, 58, 0.22);
}

.hero__portrait {
  height: auto;
}

.hero__grid {
  padding: 48px 0 50px;
}

.page-hero {
  padding: 52px 0 60px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(201, 168, 76, 0.72);
}

h1,
h2,
h3,
.section-title {
  margin: 0;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1,
.page-hero h1 {
  margin-top: 18px;
  max-width: 850px;
  font-size: clamp(2.75rem, 9.4vw, 4.6rem);
  line-height: 0.94;
}

.hero h1 {
  color: var(--white);
}

.page-hero h1 {
  color: var(--navy);
}

.lead {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
  line-height: 1.75;
}

.hero__context {
  max-width: 620px;
  margin: 20px 0 0;
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.65;
}

.hero__credential {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.65;
}

.hero__credential p {
  margin: 0;
  font-weight: 700;
}

.hero__credential span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero__secondary-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(201, 168, 76, 0.78);
  text-underline-offset: 6px;
}

.hero__secondary-link:hover {
  color: var(--white);
}

.hero__assurance {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.6;
}

@media (max-width: 1023px) {
  .hero__grid {
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 8.5vw, 4.15rem);
  }

  .hero__media {
    order: -1;
    max-width: min(340px, 82vw);
  }

  .hero__context {
    margin-right: auto;
    margin-left: auto;
    border-left: 0;
    border-top: 3px solid var(--gold);
    padding: 18px 0 0;
  }

  .hero__credential {
    margin-right: auto;
    margin-left: auto;
  }

  .hero .actions {
    justify-content: center;
  }

  .hero__assurance {
    max-width: 420px;
    margin-right: auto;
    margin-left: auto;
  }
}

.copy {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(18, 35, 58, 0.76);
  font-size: 1.08rem;
  line-height: 1.8;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 26px;
  backdrop-filter: blur(8px);
}

.hero-card__item {
  margin-top: 16px;
  border-left: 1px solid rgba(201, 168, 76, 0.76);
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.75;
}

.section {
  position: relative;
  padding: 64px 0;
  border-top: 1px solid rgba(11, 31, 58, 0.08);
}

.section--after-hero {
  padding-top: 18px;
}

.section--mist {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0)),
    var(--mist);
}

.section-title {
  max-width: 830px;
  margin-top: 12px;
  font-size: clamp(2.25rem, 6vw, 3.45rem);
  line-height: 1.06;
}

.grid {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}

.card {
  border: 1px solid rgba(11, 31, 58, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
  padding: 26px;
}

.card h3 {
  font-size: 2rem;
  line-height: 1.05;
}

.card p,
.article-content p,
.article-content li {
  color: rgba(18, 35, 58, 0.74);
  font-size: 1.05rem;
  line-height: 1.78;
}

.dark-card {
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 30px;
}

.dark-card h2,
.dark-card h3 {
  color: var(--white);
}

.dark-card p {
  color: rgba(255, 255, 255, 0.72);
}

.not-card {
  border: 1px solid rgba(201, 168, 76, 0.44);
  border-radius: 8px;
  background: var(--off-white);
  padding: 26px;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.12;
}

.visual-panel {
  min-height: 340px;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(11, 31, 58, 0.12);
}

.blog-hero-image,
.single-hero-image {
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(248, 246, 239, 0.98), rgba(240, 237, 228, 0.9)),
    var(--mist);
  box-shadow: 0 24px 80px rgba(11, 31, 58, 0.12);
}

.blog-hero-image img,
.single-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center top;
}

.single-hero-image {
  max-width: 760px;
  margin-top: 32px;
  aspect-ratio: 16 / 9;
}

.final-cta {
  background: var(--navy);
  color: var(--white);
  padding: 72px 0;
}

.final-cta__grid {
  display: grid;
  gap: 26px;
  align-items: center;
}

.final-cta h2 {
  color: var(--white);
  font-size: clamp(2.35rem, 6vw, 3.55rem);
  line-height: 1.04;
}

.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 46px 0;
}

.footer-grid {
  display: grid;
  gap: 30px;
}

.site-footer h2 {
  color: var(--white);
  font-size: clamp(2.45rem, 6vw, 3.1rem);
  line-height: 1;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: auto;
  margin: 0 0 20px;
  border: 0;
  background: transparent;
  color: var(--white);
  box-shadow: none;
  padding: 0;
}

.footer-brand img {
  display: block;
  width: auto;
  height: 48px;
  max-height: 48px;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  object-fit: contain;
}

.footer-brand__text {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.footer-brand__name {
  color: var(--white);
  font-size: clamp(1.13rem, 3vw, 1.38rem);
  font-weight: 500;
  line-height: 1.08;
}

.footer-brand__subtitle {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.2;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.official-channels__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.official-channels__links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid rgba(201, 168, 76, 0.34);
  border-radius: 999px;
  padding: 9px 14px;
  color: inherit;
  font-size: 0.92rem;
  font-weight: 700;
}

.official-channels__links a:hover {
  border-color: rgba(201, 168, 76, 0.76);
}

.official-channels--sobre {
  margin-top: 34px;
  text-align: center;
}

.official-channels--sobre .official-channels__links {
  justify-content: center;
}

.article-content {
  max-width: 820px;
}

.landing-container {
  max-width: 800px;
}

.page-hero--single-column .copy {
  max-width: 760px;
}

.landing-section {
  padding-top: 68px;
  padding-bottom: 68px;
}

.landing-block,
.landing-statement,
.landing-final {
  border: 1px solid rgba(11, 31, 58, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  padding: clamp(26px, 5vw, 40px);
}

.landing-block h2,
.landing-statement h2 {
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.06;
}

.landing-block p,
.landing-statement p,
.landing-final p,
.landing-list li {
  color: rgba(18, 35, 58, 0.76);
  font-size: 1.08rem;
  line-height: 1.78;
}

.landing-block p,
.landing-statement p {
  margin: 18px 0 0;
}

.landing-block strong {
  color: var(--navy);
}

.landing-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.landing-list li {
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  font-weight: 700;
}

.landing-statement {
  border-color: rgba(201, 168, 76, 0.34);
  background: rgba(240, 237, 228, 0.72);
}

.landing-statement > p:first-child {
  margin-top: 0;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 6vw, 3.1rem);
  font-weight: 700;
  line-height: 1.06;
}

.landing-statement--dark {
  background: var(--navy);
}

.landing-statement--dark h2,
.landing-statement--dark p {
  color: var(--white);
}

.landing-final {
  text-align: center;
}

.landing-final p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--navy);
  font-size: clamp(1.35rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
}

.landing-final .button {
  margin-top: 26px;
}

.post-list {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.post-card {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(11, 31, 58, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  padding: 26px;
}

.post-card__image {
  display: block;
  aspect-ratio: 16 / 9;
  margin: -26px -26px 20px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(11, 31, 58, 0.96), rgba(35, 66, 108, 0.72)),
    var(--navy);
}

.post-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 220ms ease;
}

.post-card:hover .post-card__image img {
  transform: scale(1.025);
}

.post-card__date {
  margin: 0 0 12px;
  color: rgba(18, 35, 58, 0.56);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
}

.single-date {
  margin-top: 18px;
  color: rgba(18, 35, 58, 0.62);
}

.post-card h2 {
  font-size: 2.3rem;
  line-height: 1.05;
}

.post-card p {
  color: rgba(18, 35, 58, 0.74);
  line-height: 1.75;
}

.social-proof {
  max-width: 800px;
}

.social-proof__list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.social-proof__intro {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(18, 35, 58, 0.72);
  font-size: 1.06rem;
  line-height: 1.7;
}

.social-proof__item {
  position: relative;
  margin: 0;
  border-left: 3px solid var(--gold);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.65;
}

.social-proof__item p {
  margin: 0;
  color: rgba(18, 35, 58, 0.78);
}

.social-proof__item cite {
  display: block;
  margin-top: 14px;
  color: rgba(18, 35, 58, 0.58);
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

.social-proof__note {
  margin: 22px 0 0;
  color: rgba(18, 35, 58, 0.58);
  font-size: 0.92rem;
  line-height: 1.6;
}

.doctoralia-certificate {
  max-width: 400px;
  margin: 38px auto 0;
  text-align: center;
}

.doctoralia-certificate h3 {
  font-size: 2rem;
  line-height: 1.05;
}

.doctoralia-certificate p {
  margin: 10px 0 0;
  color: rgba(18, 35, 58, 0.64);
  font-size: 0.98rem;
  line-height: 1.6;
}

.doctoralia-certificate__widget {
  max-width: 360px;
  margin: 22px auto 0;
  overflow: hidden;
  border-radius: 8px;
}

.faq-container {
  max-width: 800px;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.faq-item {
  border: 1px solid rgba(11, 31, 58, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  padding: 0;
}

.faq-item summary {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item h3 {
  margin: 0;
  font-size: clamp(1.5rem, 5vw, 2rem);
  line-height: 1.08;
}

.faq-answer {
  border-top: 1px solid rgba(11, 31, 58, 0.08);
  padding: 0 24px 24px;
}

.faq-answer p {
  margin: 18px 0 0;
  color: rgba(18, 35, 58, 0.74);
  font-size: 1.04rem;
  line-height: 1.78;
}

.faq-note {
  margin: 24px 0 0;
  color: rgba(18, 35, 58, 0.72);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.7;
}

.sobre-container .social-proof {
  width: 100%;
}

.home-focus {
  max-width: 800px;
}

.home-focus + .home-focus {
  padding-top: 0;
}

.home-focus .section-title {
  max-width: 760px;
}

.home-focus__copy {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.home-focus__copy p {
  margin: 0;
  color: rgba(18, 35, 58, 0.76);
  font-size: 1.08rem;
  line-height: 1.8;
}

.home-familiar {
  max-width: 800px;
}

.home-familiar .section-title {
  max-width: 760px;
}

.home-familiar__text {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.home-familiar__text p {
  margin: 0;
  color: rgba(18, 35, 58, 0.78);
  font-size: 1.14rem;
  line-height: 1.82;
}

.home-inline-cta {
  margin-top: 30px;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
}

.home-inline-cta p {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.7;
}

.home-clinical-nav__inner {
  max-width: 900px;
}

.home-clinical-nav__inner .section-title {
  max-width: 720px;
}

.home-clinical-nav__lead {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(18, 35, 58, 0.76);
  font-size: 1.08rem;
  line-height: 1.75;
}

.home-clinical-nav__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.home-clinical-card {
  display: flex;
  min-height: 188px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(11, 31, 58, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  padding: 24px;
  color: var(--navy);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.home-clinical-card:hover,
.home-clinical-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(201, 168, 76, 0.45);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 28px 82px rgba(11, 31, 58, 0.11);
}

.home-clinical-card h3 {
  font-size: clamp(1.65rem, 4vw, 2rem);
  line-height: 1.04;
}

.home-clinical-card p {
  margin: 22px 0 0;
  color: rgba(18, 35, 58, 0.72);
  font-size: 1rem;
  line-height: 1.58;
}

.home-triage-cta {
  padding: 0 0 64px;
  border-top: 1px solid rgba(11, 31, 58, 0.08);
}

.home-triage-cta__card {
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid rgba(11, 31, 58, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  padding: 30px;
  text-align: center;
  box-shadow: 0 24px 80px rgba(11, 31, 58, 0.06);
}

.home-triage-cta__card h2 {
  font-size: clamp(2rem, 6vw, 2.8rem);
  line-height: 1.05;
}

.home-triage-cta__card p {
  max-width: 470px;
  margin: 16px auto 0;
  color: rgba(18, 35, 58, 0.74);
  font-size: 1.05rem;
  line-height: 1.75;
}

.home-triage-cta__card .button {
  margin-top: 22px;
}

.home-pre-cta {
  padding: 34px 0 0;
  background: var(--off-white);
}

.home-pre-cta__inner {
  max-width: 800px;
}

.home-pre-cta p {
  margin: 0;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  color: var(--navy);
  font-size: 1.14rem;
  font-weight: 700;
  line-height: 1.7;
}

.home-micro {
  padding: 34px 0;
  background: var(--navy);
}

.home-micro__text {
  max-width: 800px;
  margin: 0 auto;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  line-height: 1.06;
}

.home-focus__items {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.home-focus__item {
  border-left: 3px solid var(--gold);
  padding: 14px 18px;
  color: var(--navy);
  font-weight: 700;
}

.home-focus__item p {
  margin: 0;
}

.home-differentiation .grid {
  align-items: start;
}

.home-diff-card {
  transition: border-color 180ms ease, background-color 180ms ease;
}

.home-diff-card[open] {
  border-color: rgba(201, 168, 76, 0.5);
  background: rgba(255, 255, 255, 0.72);
}

.home-diff-card summary {
  cursor: pointer;
  list-style: none;
}

.home-diff-card summary::-webkit-details-marker {
  display: none;
}

.home-diff-card summary h3 {
  margin: 0;
}

.home-diff-card p {
  margin: 16px 0 0;
  color: rgba(18, 35, 58, 0.74);
  font-size: 1.05rem;
  line-height: 1.78;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(201, 168, 76, 0.75);
  text-underline-offset: 5px;
}

.asrs-hero {
  background: var(--mist);
}

.asrs-container {
  max-width: 760px;
}

.asrs-clinical-note,
.asrs-panel {
  border: 1px solid rgba(11, 31, 58, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 24px 80px rgba(11, 31, 58, 0.06);
}

.asrs-clinical-note {
  margin-top: 28px;
  padding: 24px;
}

.asrs-clinical-note h2 {
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  line-height: 1.08;
}

.asrs-clinical-note p {
  margin: 12px 0 0;
  color: rgba(18, 35, 58, 0.76);
  line-height: 1.75;
}

.asrs-section {
  background: var(--off-white);
}

.asrs-app {
  max-width: 760px;
  margin: 0 auto;
}

.asrs-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(11, 31, 58, 0.1);
}

.asrs-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--gold);
  transition: width 220ms ease;
}

.asrs-progress__label {
  margin: 12px 0 0;
  color: rgba(18, 35, 58, 0.62);
  font-size: 0.94rem;
  font-weight: 700;
}

.asrs-panel {
  margin-top: 24px;
  padding: 26px;
}

.asrs-panel[hidden] {
  display: none;
}

.asrs-panel h2 {
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.08;
}

.asrs-panel > p,
.asrs-result > p {
  color: rgba(18, 35, 58, 0.74);
  font-size: 1.05rem;
  line-height: 1.78;
}

.asrs-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin: 24px 0;
  color: rgba(18, 35, 58, 0.78);
  line-height: 1.65;
}

.asrs-consent input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: var(--gold);
}

.asrs-options {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.asrs-option {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(11, 31, 58, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  padding: 14px 16px;
  color: var(--navy);
  font-weight: 700;
  cursor: pointer;
}

.asrs-option:has(input:checked) {
  border-color: rgba(201, 168, 76, 0.86);
  background: rgba(201, 168, 76, 0.14);
}

.asrs-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.asrs-actions,
.asrs-result-cta .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.asrs-actions .button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.asrs-error {
  margin: 16px 0 0;
  color: #8a2b2b;
  font-weight: 700;
}

.asrs-form-grid {
  display: grid;
  gap: 16px;
  margin: 24px 0;
}

.asrs-form-grid label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 700;
}

.asrs-form-grid input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(11, 31, 58, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
}

.asrs-score {
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  color: var(--navy) !important;
  font-weight: 700;
}

.asrs-part-a,
.asrs-result-cta {
  margin-top: 24px;
  border: 1px solid rgba(11, 31, 58, 0.1);
  border-radius: 8px;
  background: var(--mist);
  padding: 22px;
}

.asrs-part-a h3,
.asrs-result-cta h3 {
  font-size: clamp(1.7rem, 5vw, 2.3rem);
  line-height: 1.08;
}

.asrs-part-a p,
.asrs-result-cta p {
  color: rgba(18, 35, 58, 0.74);
  line-height: 1.75;
}

@supports not selector(:has(*)) {
  .asrs-option {
    background: rgba(255, 255, 255, 0.72);
  }
}

@media (min-width: 760px) {
  .grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }

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

@media (min-width: 1024px) {
  .site-nav {
    display: flex;
  }

  .hero__grid,
  .page-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
    column-gap: clamp(42px, 7vw, 86px);
  }

  .hero__copy {
    grid-column: 1;
    grid-row: 1;
  }

  .hero__media {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    max-width: 380px;
  }

  .hero__grid {
    min-height: 540px;
    padding: 58px 0 60px;
  }

  .brand__logo {
    height: 52px;
    max-height: 52px;
  }

  .page-hero {
    padding: 70px 0 76px;
  }

  .section {
    padding: 76px 0;
  }

  .section--after-hero {
    padding-top: 26px;
  }

  .home-triage-cta {
    padding-bottom: 76px;
  }

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

  .final-cta__grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}


.doctoralia-card {
  grid-column: 1 / -1;
}

.agendar-page {
  min-height: 72vh;
}

.agendar-container {
  max-width: 800px;
  padding-right: 20px;
  padding-left: 20px;
}

.agendar-intro {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.agendar-intro h1 {
  margin-top: 12px;
  font-size: clamp(2.7rem, 9vw, 4.4rem);
  line-height: 0.98;
}

.agendar-intro .copy {
  max-width: 640px;
  margin: 22px auto 0;
}

.agendar-flow {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 44px auto 0;
}

.agendar-widget-card {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 34px);
}

.agendar-info-card {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.agendar-assurance {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.agendar-assurance p {
  margin: 0;
}

.doctoralia-widget-panel {
  margin: 28px auto;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
}

.doctoralia-widget-panel iframe {
  width: 100% !important;
  max-width: 100% !important;
}

.sobre-page {
  min-height: 72vh;
}

.sobre-container {
  max-width: 800px;
  padding-right: 20px;
  padding-left: 20px;
}

.sobre-intro {
  text-align: center;
}

.sobre-photo {
  width: min(380px, 82vw);
  margin: 0 auto 32px;
}

.sobre-photo__image {
  aspect-ratio: 3 / 4;
}

.sobre-photo figcaption {
  margin-top: 16px;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.45;
}

.sobre-photo figcaption span {
  display: block;
  color: rgba(11, 31, 58, 0.58);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sobre-intro h1 {
  margin-top: 12px;
  font-size: clamp(2.7rem, 9vw, 4.4rem);
  line-height: 0.98;
}

.sobre-intro .copy {
  max-width: 680px;
  margin: 22px auto 0;
}

.sobre-opening {
  display: grid;
  gap: 12px;
  max-width: 700px;
  margin: 28px auto 0;
  color: rgba(18, 35, 58, 0.78);
  font-size: 1.12rem;
  line-height: 1.8;
}

.sobre-opening p {
  margin: 0;
}

.sobre-content {
  display: grid;
  gap: 26px;
  margin-top: 48px;
}

.sobre-section h2 {
  font-size: clamp(2rem, 7vw, 3rem);
  line-height: 1.04;
}

.sobre-section p {
  margin: 16px 0 0;
}

.sobre-section strong {
  color: var(--navy);
}

.dark-card.sobre-section strong {
  color: var(--white);
}

.sobre-section ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.sobre-section li + li {
  margin-top: 10px;
}

.sobre-highlight {
  margin-top: 24px;
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  background: rgba(240, 237, 228, 0.72);
  padding: 20px;
}

.sobre-highlight p:first-child {
  margin-top: 0;
}

.sobre-highlight--dark {
  background: rgba(255, 255, 255, 0.08);
}

.sobre-statement-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.sobre-statement-list p {
  margin: 0;
  border-left: 3px solid var(--gold);
  padding-left: 14px;
  color: var(--navy);
  font-weight: 700;
}

.sobre-cta {
  margin-top: 36px;
  text-align: center;
}

.sobre-cta p {
  max-width: 620px;
  margin: 0 auto 22px;
  color: rgba(18, 35, 58, 0.78);
  font-size: 1.08rem;
  line-height: 1.75;
}
