/* =====================================================
   Dra. Ana Carolina Abrahão, estilos do site
   Baseado no estilo MD Private Clinic (axiomthemes)
   Fontes: Urbanist (headings) + Mulish (body)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600&family=Mulish:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400&display=swap');

/* ─── CSS VARIABLES ────────────────────────────────── */
:root {
  /* Colors */
  --color-dark:        #042a2f;
  --color-primary:     #005861;
  --color-primary-hover: #00434a;
  --color-accent:      #6bcdc4;
  --color-gradient:    linear-gradient(135deg, #005861 0%, #6bcdc4 100%);
  --color-bg:          #FFFFFF;
  --color-bg-2:        #F4F6F9;
  --color-border:      #DAE1E7;
  --color-meta:        #7A8C9E;
  --color-text:        #3A4B5C;
  --color-white:       #FFFFFF;
  --color-gold:        #C9A96E;

  /* Typography */
  --font-heading: 'Urbanist', sans-serif;
  --font-body:    'Mulish', sans-serif;

  /* Spacing */
  --section-pad: 100px 0;
  --section-pad-sm: 60px 0;
  --container-max: 1260px;
  --container-pad: 0 30px;

  /* Transitions */
  --transition: all 0.3s ease;

  /* Shadows */
  --shadow-card: 0 4px 30px rgba(8, 54, 59, 0.08);
  --shadow-card-hover: 0 12px 48px rgba(8, 54, 59, 0.16);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ─── CONTAINER ───────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-pad);
  width: 100%;
}

/* ─── TYPOGRAPHY ──────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  line-height: 1.15;
  font-weight: 700;
}

h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }

p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  color: var(--color-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-title span {
  color: var(--color-primary);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-meta);
  max-width: 520px;
  line-height: 1.8;
}

/* ─── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(90deg, #005861 0%, #6bcdc4 100%);
  background-size: 200% auto;
  color: var(--color-white);
  border: none;
  box-shadow: 0 4px 14px rgba(0, 88, 97, 0.28);
}

.btn-primary:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 88, 97, 0.40);
}

.btn-outline {
  background: transparent;
  color: var(--color-dark);
  border: 2px solid var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.4);
}

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

.btn-dark {
  background: var(--color-dark);
  color: var(--color-white);
  border: 2px solid var(--color-dark);
}

.btn-dark:hover {
  background: #0a4a51;
  border-color: #0a4a51;
  transform: translateY(-2px);
}

/* ─── TOP BAR ─────────────────────────────────────── */
.top-bar {
  background: #EFF3F8;
  color: #5A6E82;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 10px 0;
  border-bottom: 1px solid #E2EBF4;
  z-index: 100;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.top-bar-text { color: #5A6E82; }

.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0E2A47;
  font-weight: 700;
  transition: var(--transition);
}

.top-bar-link:hover { color: var(--color-primary); }

.top-bar-link svg {
  width: 16px;
  height: 16px;
  fill: #25D366;
  flex-shrink: 0;
}

.top-bar-divider {
  color: #CCD8E4;
  margin: 0 12px;
}

.top-bar-city {
  color: var(--color-primary);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

/* ─── HEADER / NAV ────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 30px rgba(8, 54, 59, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.site-logo img {
  width: 220px;
  height: auto;
  max-width: 220px;
}

.site-logo .logo-on-light { display: none; }

/* Visually hidden (screen reader only) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo-subtitle {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-meta);
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu li { position: relative; }

.nav-menu a,
.nav-dropdown-trigger {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-dark);
  transition: var(--transition);
  padding: 4px 0;
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 0;
  background: transparent;
  line-height: inherit;
}

.nav-menu a::after,
.nav-dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active,
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger.active { color: var(--color-primary); }

.nav-menu a:hover::after,
.nav-menu a.active::after,
.nav-dropdown-trigger:hover::after,
.nav-dropdown-trigger.active::after { width: 100%; }

/* Dropdown */
.has-dropdown { position: relative; }

.has-dropdown > .nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
}

.has-dropdown > .nav-dropdown-trigger svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.has-dropdown:hover > .nav-dropdown-trigger svg,
.has-dropdown.is-open > .nav-dropdown-trigger svg { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: var(--shadow-card-hover);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  transform: translateX(-50%) translateY(8px);
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 9px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-text);
}

.dropdown-menu li a::after { display: none; }

.dropdown-menu li a:hover {
  color: var(--color-primary);
  background: var(--color-bg-2);
  padding-left: 28px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 1050;
  flex-direction: column;
  padding: 100px 30px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition:
    transform 0.35s cubic-bezier(0.77, 0, 0.175, 1),
    visibility 0s linear 0.35s;
  visibility: hidden;
  pointer-events: none;
}

.mobile-nav.open {
  transform: translateX(0);
  transition:
    transform 0.35s cubic-bezier(0.77, 0, 0.175, 1),
    visibility 0s linear 0s;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-close {
  position: absolute;
  top: 22px;
  right: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--color-dark);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: var(--color-bg-2);
}

.mobile-nav-close span {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.mobile-nav-close span:first-child { transform: rotate(45deg); }
.mobile-nav-close span:last-child { transform: rotate(-45deg); }

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-menu li {
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav-menu > li > a {
  display: block;
  padding: 16px 0;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-dark);
}

.mobile-nav-section-label {
  display: block;
  padding: 16px 0 8px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-dark);
}

.mobile-nav-menu > li > a:hover { color: var(--color-primary); }

.mobile-submenu {
  padding: 0 0 12px 16px;
}

.mobile-submenu li a {
  display: block;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--color-text);
}

.mobile-submenu li a:hover { color: var(--color-primary); }

.mobile-submenu li { border-bottom: 0; }

.mobile-nav-cta {
  margin-top: 32px;
}

.mobile-nav-cta-title {
  display: block;
  margin-bottom: 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.mobile-nav-cta-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mobile-nav-location-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 16px;
  border-radius: var(--radius-btn);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: var(--transition);
}

.mobile-nav-location-btn:hover { transform: translateY(-2px); }

.mobile-nav-location-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: currentColor;
  margin-right: 6px;
}

.mobile-nav-location-btn-ipanema {
  background: var(--color-gold);
  color: var(--color-dark);
}

.mobile-nav-location-btn-tijuca {
  background: var(--color-primary);
  color: var(--color-white);
}

/* ─── HOME: DARK HEADER PALETTE ──────────────────── */
.home-page .top-bar {
  background: #06383F;
  color: rgba(255, 255, 255, 0.68);
  border-bottom-color: rgba(216, 183, 130, 0.16);
}

.home-page .top-bar-text { color: rgba(255, 255, 255, 0.62); }
.home-page .top-bar-link { color: rgba(255, 255, 255, 0.9); }
.home-page .top-bar-link:hover { color: #D8B782; }
.home-page .top-bar-divider { color: rgba(255, 255, 255, 0.2); }
.home-page .top-bar-city { color: #D8B782; }
.home-page #topbar-whatsapp-ipanema { color: #D8B782; }
.home-page #topbar-whatsapp-ipanema:hover { color: #E8CC9E; }
.home-page .top-bar-city-tijuca { color: rgba(255, 255, 255, 0.78); }

.home-page .site-header {
  background: #06464D;
  border-bottom-color: rgba(216, 183, 130, 0.15);
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.home-page .site-header .nav-menu a,
.home-page .site-header .nav-dropdown-trigger { color: rgba(255, 255, 255, 0.82); }
.home-page .site-header .nav-menu a:hover,
.home-page .site-header .nav-menu a.active,
.home-page .site-header .nav-dropdown-trigger:hover,
.home-page .site-header .nav-dropdown-trigger.active { color: #D8B782; }
.home-page .site-header .nav-menu a::after,
.home-page .site-header .nav-dropdown-trigger::after { background: #BF965D; }

.home-page .site-header .btn-primary,
.home-page .hero .btn-primary {
  background: #BF965D;
  color: #082F35;
  box-shadow: 0 8px 24px rgba(191, 150, 93, 0.22);
}

.home-page .site-header .btn-primary:hover,
.home-page .hero .btn-primary:hover {
  background: #D8B782;
  color: #082F35;
  border-color: #D8B782;
}

.home-page .site-header .hamburger span { background: #FFFDF8; }
.home-page .site-header .dropdown-menu a { color: var(--color-text); }
.home-page .site-header .dropdown-menu a:hover { color: var(--color-primary); }

.home-page .site-header.scrolled {
  background: rgba(255, 253, 248, 0.97);
  border-bottom-color: rgba(5, 83, 90, 0.14);
  box-shadow: 0 8px 32px rgba(5, 52, 58, 0.12);
  backdrop-filter: blur(14px);
}

.home-page .site-header.scrolled .logo-on-dark { display: none; }
.home-page .site-header.scrolled .logo-on-light { display: block; }
.home-page .site-header.scrolled .nav-menu a,
.home-page .site-header.scrolled .nav-dropdown-trigger { color: var(--color-dark); }
.home-page .site-header.scrolled .nav-menu a:hover,
.home-page .site-header.scrolled .nav-menu a.active,
.home-page .site-header.scrolled .nav-dropdown-trigger:hover,
.home-page .site-header.scrolled .nav-dropdown-trigger.active { color: var(--color-primary); }
.home-page .site-header.scrolled .nav-menu a::after,
.home-page .site-header.scrolled .nav-dropdown-trigger::after { background: var(--color-primary); }
.home-page .site-header.scrolled .btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(0, 88, 97, 0.18);
}
.home-page .site-header.scrolled .hamburger span,
.home-page .site-header .hamburger.open span { background: var(--color-dark); }

/* ─── HERO ────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - 109px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #07555b;
}

.hero-bg-shape {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 80% at 72% 48%, rgba(72, 157, 158, 0.34) 0%, transparent 68%),
    radial-gradient(ellipse 50% 65% at 18% 85%, rgba(3, 36, 49, 0.52) 0%, transparent 62%),
    linear-gradient(145deg, #073c4a 0%, #086065 52%, #064c55 100%);
}

.hero-bg-shape::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 67% 44%, rgba(191, 150, 93, 0.11) 0%, transparent 48%);
}

.hero-bg-shape::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
}

.hero-content { max-width: 560px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D8B782;
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #BF965D;
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: #FFFDF8;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title span {
  color: #D5AD73;
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.home-page .hero .btn-outline {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.04);
}

.home-page .hero .btn-outline:hover {
  color: #FFFDF8;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
}

/* Hero Image */
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
}

.hero-photo-stage {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(216, 183, 130, 0.38);
  box-shadow: 0 32px 80px rgba(1, 27, 33, 0.4), 0 0 60px rgba(191, 150, 93, 0.1);
  z-index: 1;
  background: #0A4B51;
}

.hero-photo-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 253, 248, 0.08);
  border-radius: inherit;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 1.5s ease-in-out, transform 8s ease-out;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-badge {
  position: absolute;
  bottom: 44px;
  left: 0;
  background: #FFFDF8;
  border-radius: 12px;
  padding: 16px 22px;
  box-shadow: var(--shadow-card-hover);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
  min-width: 220px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
}

.hero-badge-icon {
  width: 44px;
  height: 44px;
  background: #F5EBDD;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-badge-icon svg {
  width: 22px;
  height: 22px;
  stroke: #96762C;
  fill: none;
  stroke-width: 2;
}

.hero-badge-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #073C43;
  line-height: 1;
}

.hero-badge-text { line-height: 1.25; }

.hero-badge-text span {
  display: block;
  margin-top: 5px;
  font-size: 0.75rem;
  color: #7B6B56;
  font-weight: 600;
  line-height: 1.3;
}

/* ─── SPECIALTIES STRIP ───────────────────────────── */
.specialties-strip {
  padding: 0;
  overflow: hidden;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 420px;
}

/* Photo card */
.specialty-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  text-align: left;
  color: var(--color-white);
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
}

/* Background photo */
.specialty-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

.specialty-card:hover .specialty-card-bg {
  transform: scale(1.08);
}

/* Gradient overlay. Always present and deeper on hover. */
.specialty-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 30, 33, 0.92) 0%,
    rgba(5, 30, 33, 0.55) 45%,
    rgba(5, 30, 33, 0.15) 100%
  );
  transition: background 0.4s ease;
  z-index: 1;
}

.specialty-card:hover::after {
  background: linear-gradient(
    to top,
    rgba(0, 120, 140, 0.94) 0%,
    rgba(0, 100, 120, 0.60) 50%,
    rgba(0, 80, 100, 0.20) 100%
  );
}

/* Content sits above gradient */
.specialty-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Top label/tag */
.specialty-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D8B782;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.specialty-card:hover .specialty-tag {
  opacity: 1;
  transform: translateY(0);
}

/* Icon */
.specialty-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease;
  flex-shrink: 0;
  backdrop-filter: blur(4px);
}

.specialty-card:hover .specialty-icon {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.4);
}

.specialty-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-white);
  fill: none;
  stroke-width: 1.8;
}

/* Title */
.specialty-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--color-white);
}

/* Arrow link */
.specialty-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
}

.specialty-arrow svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  transition: transform 0.25s ease;
}

.specialty-card:hover .specialty-arrow {
  opacity: 1;
  transform: translateY(0);
}

.specialty-card:hover .specialty-arrow svg {
  transform: translateX(3px);
}

/* ─── CONSULTATION EXPECTATIONS ─────────────────── */
.consultation-expectations {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(107, 205, 196, 0.12), transparent 28%),
    radial-gradient(circle at 92% 92%, rgba(201, 169, 110, 0.12), transparent 30%),
    #042A2F;
}

.consultation-expectations::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: min(90%, 1120px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(216, 183, 130, 0.45), transparent);
}

.consultation-expectations .container {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(54px, 7vw, 96px);
  align-items: start;
}

.expectations-heading {
  padding-top: 8px;
}

.expectations-heading .section-label {
  color: #D8B782;
}

.expectations-title {
  max-width: 470px;
  margin: 0;
  font-size: clamp(2.15rem, 3.7vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #FFFDF8;
}

.expectations-title span {
  display: block;
  color: #D8B782;
}

.expectations-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.expectation-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 78px;
  padding: 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  transition: var(--transition);
}

.expectation-item:hover {
  border-color: rgba(216, 183, 130, 0.38);
  background: rgba(255, 255, 255, 0.075);
  transform: translateX(4px);
}

.expectation-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(216, 183, 130, 0.38);
  border-radius: 50%;
  background: rgba(216, 183, 130, 0.1);
  color: #D8B782;
}

.expectation-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.expectation-item strong {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

/* ─── ABOUT SECTION ──────────────────────────────── */
.about {
  padding: var(--section-pad);
  background: var(--color-bg);
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow-card-hover);
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--color-bg-2);
  border-radius: 12px;
  z-index: -1;
}

.about-image-badge {
  position: absolute;
  top: 24px;
  right: -24px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 16px 20px;
  border-radius: 10px;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 8px 30px rgba(0, 168, 188, 0.4);
}

.about-image-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

.about-image-badge span {
  display: block;
  margin-top: 7px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.3;
  opacity: 0.9;
}

.credentials-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.5;
}

.credential-item .check-icon {
  width: 20px;
  height: 20px;
  background: var(--color-bg-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.credential-item .check-icon svg {
  width: 11px;
  height: 11px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 2.5;
}

.about-quote {
  border-left: 3px solid var(--color-primary);
  padding: 16px 20px;
  background: var(--color-bg-2);
  border-radius: 0 8px 8px 0;
  margin: 24px 0 32px;
  font-style: italic;
  color: var(--color-dark);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 500;
}

/* ─── NUMBERS / STATS ────────────────────────────── */
.stats-section {
  padding: var(--section-pad);
  background: oklch(97% 0.008 200);
}

.stats-header {
  text-align: center;
  margin-bottom: 60px;
}

.stats-header .section-subtitle {
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}

.stat-card {
  background: var(--color-bg);
  padding: 44px 30px;
  text-align: center;
  position: relative;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1;
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.stat-number .suffix {
  font-size: 1.8rem;
  color: var(--color-primary);
}

.stat-number-crm {
  font-size: 2.45rem;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-meta);
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: oklch(95% 0.03 200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.stat-icon svg {
  width: 22px;
  height: 22px;
  stroke: oklch(38% 0.08 200);
  fill: none;
  stroke-width: 1.8;
}

/* ─── TESTIMONIALS ───────────────────────────────── */
.testimonials {
  padding: var(--section-pad);
  background: var(--color-bg);
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--color-bg-2);
  border-radius: 12px;
  padding: 36px;
  position: relative;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: var(--color-primary);
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--color-primary);
  opacity: 0.2;
  line-height: 0.6;
  margin-bottom: 16px;
  display: block;
}

.testimonial-text {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-dark);
}

.author-role {
  font-size: 0.78rem;
  color: var(--color-meta);
  font-weight: 600;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--color-gold);
  stroke: none;
}

/* ─── FAQ ─────────────────────────────────────────── */
.faq-section {
  padding: var(--section-pad);
  background: #F7FAFA;
}

.faq-header {
  max-width: 680px;
  margin: 0 auto 54px;
  text-align: center;
}

.faq-header .section-title span {
  color: var(--color-primary);
}

.faq-header .section-subtitle {
  color: #637786;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 24px;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid #DCE7E9;
  border-radius: 14px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item[open] {
  border-color: rgba(0, 88, 97, 0.34);
  box-shadow: 0 12px 32px rgba(8, 54, 59, 0.07);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 72px;
  padding: 20px 22px;
  list-style: none;
  cursor: pointer;
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.4;
}

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

.faq-item summary:focus-visible {
  outline: 3px solid rgba(107, 205, 196, 0.55);
  outline-offset: -3px;
}

.faq-icon {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  background: rgba(107, 205, 196, 0.16);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-primary);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.faq-answer {
  padding: 0 22px 24px;
}

.faq-answer p {
  color: #526776;
  font-size: 0.94rem;
  line-height: 1.78;
}

.faq-answer p + p {
  margin-top: 14px;
}

/* ─── CONTACT / LOCATION ─────────────────────────── */
.contact-section {
  padding: var(--section-pad);
  background: oklch(97% 0.008 200);
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header .section-label { color: var(--color-primary); }
.contact-header .section-title { color: #0E2A47; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.contact-card {
  background: #FFFFFF;
  border: 1px solid #E2ECF4;
  border-radius: 20px;
  padding: 44px;
  box-shadow: 0 16px 36px rgba(14, 42, 71, 0.05);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(14, 42, 71, 0.09);
  border-color: var(--color-primary);
}

.contact-city {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #0E2A47;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-city svg {
  width: 20px;
  height: 20px;
  stroke: oklch(38% 0.08 200);
  fill: none;
  stroke-width: 2;
}

.contact-address {
  font-size: 0.95rem;
  color: #5A6E82;
  line-height: 1.8;
  margin-bottom: 8px;
}

.directions-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-bottom: 28px;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(0, 88, 97, 0.28);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--color-primary);
}

.directions-link::after {
  content: '↗';
  font-size: 0.88rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.directions-link:hover {
  color: var(--color-primary-hover);
  border-color: currentColor;
}

.directions-link:hover::after {
  transform: translate(2px, -2px);
}

.contact-phones {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-phone-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: #F8FBFE;
  border: 1px solid #E6EEF6;
  border-radius: 10px;
}

.phone-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7A8C9E;
}

.phone-number {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #0E2A47;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--color-white);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 6px;
  transition: var(--transition);
}

.whatsapp-btn:hover {
  background: #20ba59;
  transform: translateY(-1px);
}

.whatsapp-btn svg {
  width: 16px;
  height: 16px;
  fill: var(--color-white);
}

/* ─── FOOTER ─────────────────────────────────────── */
.site-footer {
  background:
    radial-gradient(circle at 85% 0%, rgba(191, 150, 93, 0.09), transparent 30%),
    #051f22;
  padding: 64px 0 26px;
  color: rgba(255,255,255,0.65);
  border-top: 1px solid rgba(216, 183, 130, 0.16);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(120px, 0.42fr) minmax(170px, 0.62fr) minmax(350px, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
  padding-bottom: 46px;
}

.footer-brand { max-width: 430px; }

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
}

.footer-logo img { width: min(100%, 260px); height: auto; }

.footer-desc {
  max-width: 42ch;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.62);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #D8B782;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  display: inline-flex;
  width: fit-content;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.68);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-white);
  transform: translateX(3px);
}

.footer-contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.footer-contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 12px;
  transition: var(--transition);
}

.footer-contact-card:hover {
  background: rgba(216, 183, 130, 0.1);
  border-color: rgba(216, 183, 130, 0.42);
  transform: translateY(-2px);
}

.footer-contact-city {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #D8B782;
}

.footer-contact-card strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.3;
  color: var(--color-white);
}

.footer-contact-card > span:last-child,
.footer-whatsapp-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.42);
}

.footer-whatsapp-label svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  text-align: left;
  font-size: 0.76rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.4);
}

.footer-bottom > p {
  font-size: 0.68rem;
}

.footer-credentials {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.footer-credentials span {
  padding: 5px 9px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  background: rgba(255,255,255,0.025);
  color: rgba(255,255,255,0.54);
  white-space: nowrap;
}

/* ─── INNER PAGE HEADER ──────────────────────────── */
.page-hero {
  background: linear-gradient(90deg, #dae1e7 0%, #FFFFFF 100%);
  padding: 64px 0 48px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #E4ECF4;
}

.page-hero::before {
  content: '';
  position: absolute;
  right: 5%;
  top: -50px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 204, 195, 0.22) 0%, rgba(32, 100, 182, 0.06) 50%, transparent 70%);
  pointer-events: none;
}

.page-hero-content { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #7A8C9E;
  margin-bottom: 16px;
}

.breadcrumb a { color: var(--color-primary); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: #BAC8D6; }

.page-title {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 800;
  color: #0E2A47;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.page-subtitle {
  font-size: 1.08rem;
  color: #5A6E82;
  max-width: 560px;
  line-height: 1.7;
}

/* ─── SPECIALTY PAGE ─────────────────────────────── */

/* ── Intro split: big image + rich text */
.specialty-intro {
  padding: 80px 0 60px;
  background: var(--color-bg);
}

.specialty-intro .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.specialty-intro-image {
  position: relative;
}

.specialty-intro-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(8,54,59,0.18);
  display: block;
}

.specialty-intro-image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 80%;
  height: 80%;
  border: 3px solid var(--color-primary);
  border-radius: 16px;
  z-index: -1;
  opacity: 0.25;
}

.specialty-intro-text .section-label {
  display: block;
  margin-bottom: 12px;
}

.specialty-intro-text h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--color-dark);
  margin-bottom: 24px;
  line-height: 1.15;
}

.specialty-intro-text h2 span {
  color: var(--color-primary);
}

.specialty-lead {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--color-text);
  margin-bottom: 20px;
  padding-left: 18px;
  border-left: 3px solid var(--color-primary);
}

.specialty-intro-text p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--color-meta);
  margin-bottom: 14px;
}

/* ── Info cards: light bg, modern floating glass cards */
.specialty-info {
  padding: 80px 0;
  background: #F4F7FA;
}

.specialty-info .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.info-card {
  padding: 48px 44px;
  background: #FFFFFF;
  border: 1px solid #E2ECF4;
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(14, 42, 71, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(14, 42, 71, 0.09);
}

.info-card-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.info-card-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--color-primary);
  flex-shrink: 0;
}

.info-card h4 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0E2A47;
  margin-bottom: 32px;
  line-height: 1.2;
}

/* Disorder items */
.disorder-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.disorder-item {
  padding-bottom: 24px;
  border-bottom: 1px solid #EEF4F8;
}

.disorder-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.disorder-item h5 {
  font-size: 0.98rem;
  font-weight: 700;
  color: #005861;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.disorder-item h5::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

.disorder-item p {
  font-size: 0.9rem;
  color: #5A6E82;
  line-height: 1.7;
  padding-left: 18px;
}

.procedure-note {
  margin-left: 18px;
  padding: 18px 20px;
  background: #FBF5E9;
  border: 1px solid rgba(205, 164, 91, 0.35);
  border-left: 4px solid var(--color-accent);
  border-radius: 12px;
}

.procedure-note p {
  padding-left: 0;
  color: #4F4437;
  line-height: 1.6;
}

.procedure-note strong {
  font-weight: 700;
}

/* Symptom list */
.symptom-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.symptom-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.93rem;
  color: #4A5E72;
  line-height: 1.6;
  padding-bottom: 16px;
  border-bottom: 1px solid #EEF4F8;
}

.symptom-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.symptom-list li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--color-primary);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4.5 12.75 6 6 9-13.5'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 1px;
}

/* ── CTA block: site-wide appointment prompt */
.specialty-cta {
  padding: 72px 0;
  background: #F4F7FA;
}

.specialty-cta .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  background: linear-gradient(120deg, #042a2f 0%, #006771 100%);
  border-radius: 24px;
  padding: 58px 60px;
  box-shadow: 0 22px 54px rgba(4, 42, 47, 0.2);
  position: relative;
  overflow: hidden;
}

.specialty-cta .container::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.2), rgba(201, 169, 110, 0) 68%);
  pointer-events: none;
}

.specialty-cta-text {
  position: relative;
  z-index: 1;
}

.specialty-cta-text .section-label {
  color: var(--color-gold);
  margin-bottom: 16px;
  display: block;
}

.specialty-cta-text h3 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--color-white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.specialty-cta-text p {
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  font-size: 0.97rem;
  max-width: 650px;
}

.specialty-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  min-width: 240px;
  position: relative;
  z-index: 1;
}

.specialty-cta-actions > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 14px 28px;
  border-width: 1.5px;
  line-height: 1.2;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-align: center;
}

.specialty-cta-actions > .btn-primary {
  border: 1.5px solid transparent;
}

.specialty-cta .btn-primary {
  background: var(--color-gold);
  color: var(--color-dark);
  box-shadow: 0 8px 24px rgba(4, 42, 47, 0.24);
}

.specialty-cta .btn-primary:hover {
  background: #D8B782;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(4, 42, 47, 0.3);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 0.03em;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}



/* ─── QUEM SOU PAGE ──────────────────────────────── */
.about-page {
  padding: 92px 0 104px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F7F9FB 100%);
}

.about-page .container {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.35fr);
  gap: clamp(56px, 6vw, 88px);
  align-items: start;
}

.about-page-image {
  position: sticky;
  top: 118px;
}

.about-page-image img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  width: 100%;
  box-shadow: var(--shadow-card-hover);
}

.about-page-content {
  max-width: 720px;
}

.about-page-heading {
  padding-bottom: 30px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--color-border);
}

.about-page-title {
  max-width: 680px;
  margin-bottom: 12px;
  font-size: clamp(2.3rem, 4vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--color-dark);
}

.about-page-specialty {
  max-width: 650px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-primary);
}

.about-page-registration {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 16px;
  margin-top: 20px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--color-meta);
}

.about-page-registration span + span {
  padding-left: 16px;
  border-left: 1px solid var(--color-border);
}

.about-page-copy p {
  max-width: none;
  margin-bottom: 18px;
  color: var(--color-text);
  line-height: 1.9;
}

.about-page-copy .about-page-lead {
  margin-bottom: 24px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.55;
  color: var(--color-dark);
}

.commitment-block {
  margin-top: 40px;
  padding: 38px 40px;
  background: linear-gradient(135deg, #042a2f 0%, #005861 100%);
  border: 1px solid rgba(201, 169, 110, 0.24);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(4, 42, 47, 0.16);
}

.commitment-block h2 {
  margin-bottom: 18px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.commitment-block p {
  max-width: none;
  margin-bottom: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.76);
}

.commitment-final {
  display: block;
  padding-top: 22px;
  margin-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.13);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.55;
  color: var(--color-white);
}

/* ─── ANIMATIONS ─────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ─── UTILITY ────────────────────────────────────── */
.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --section-pad: 72px 0;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content { max-width: 100%; }

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

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

  .hero-bg-shape { display: block; }

  .hero-image-wrap { order: -1; }

  .hero-badge { left: 50%; transform: translateX(-50%); }

  .about .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-badge { right: 16px; }

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

  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; max-width: 560px; }
  .footer-schedule { grid-column: 1 / -1; }

  .specialties-grid { grid-template-columns: repeat(3, 1fr); height: auto; }

  .specialty-card { height: 300px; }

  .specialty-intro .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .specialty-intro-image img { height: 380px; }

  .specialty-info .container {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .specialty-cta .container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .specialty-cta-actions {
    flex-direction: row;
    min-width: auto;
  }

  .about-page .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-page { padding: 72px 0 84px; }
  .about-page-image { position: static; max-width: 560px; }
  .about-page-content { max-width: 780px; }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 56px 0;
    --container-pad: 0 20px;
  }

  html,
  body { overflow-x: clip; }

  .site-header {
    position: sticky;
    top: 0;
  }

  .hero .fade-in,
  .page-hero .fade-in,
  .about-page > .container > .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .main-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  .site-logo img {
    width: 190px;
    max-width: 190px;
  }

  .top-bar { display: none; }

  .top-bar .container { gap: 8px; justify-content: center; flex-direction: column; }

  .home-page .top-bar .container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, auto));
    grid-template-areas:
      "message message"
      "ipanema-city tijuca-city"
      "ipanema-phone tijuca-phone";
    justify-content: center;
    column-gap: 24px;
    row-gap: 4px;
  }

  .home-page .top-bar-text {
    grid-area: message;
    justify-self: center;
  }

  .home-page .top-bar-city-ipanema { grid-area: ipanema-city; }
  .home-page .top-bar-city-tijuca { grid-area: tijuca-city; }
  .home-page #topbar-whatsapp-ipanema { grid-area: ipanema-phone; }
  .home-page #topbar-whatsapp-tijuca { grid-area: tijuca-phone; }

  .home-page .top-bar-city,
  .home-page .top-bar-link { justify-self: center; }

  .top-bar-divider { display: none; }

  .hero {
    min-height: auto;
    padding: 0 0 40px;
  }

  .hero .container {
    padding-top: 0;
    padding-bottom: 0;
    gap: 30px;
  }

  .hero-image-wrap {
    width: calc(100% + 40px);
    max-width: none;
    margin-right: -20px;
    margin-left: -20px;
    padding-bottom: 0;
  }

  .hero-photo-stage {
    max-width: none;
    height: 350px;
    aspect-ratio: auto;
    border-radius: 0;
  }

  .hero-photo-stage::after { border-radius: 0; }

  .hero-slide { object-position: center top; }

  .hero-badge { display: none; }

  .hero-title { font-size: 2rem; }

  .hero-eyebrow {
    flex-direction: column;
    gap: 8px;
  }

  .hero-eyebrow::before {
    order: 2;
    width: 38px;
  }

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

  #card-tontura { grid-column: 1 / -1; }

  .specialty-card { height: 280px; }

  .specialty-name { font-size: 1.35rem; }

  .specialty-card-content { gap: 4px; }

  .specialty-tag,
  .specialty-arrow {
    opacity: 1;
    transform: translateY(0);
  }

  .consultation-expectations { padding: 56px 0; }

  .consultation-expectations .container {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .expectations-heading { padding-top: 0; }

  .expectations-title {
    max-width: 520px;
    font-size: 2.25rem;
  }

  .expectations-title span { display: inline; }

  .expectation-item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    min-height: 70px;
    padding: 14px 16px;
  }

  .expectation-icon {
    width: 42px;
    height: 42px;
  }

  .expectation-item strong {
    font-size: 0.98rem;
    line-height: 1.4;
  }

  .testimonials-track { grid-template-columns: 1fr; }

  .faq-grid { grid-template-columns: 1fr; gap: 14px; }

  .faq-header { margin-bottom: 38px; }

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

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

  .stat-card { padding: 28px 12px; }

  .stat-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }

  .stat-icon svg {
    width: 19px;
    height: 19px;
  }

  .stat-number {
    font-size: clamp(1.45rem, 7.2vw, 1.9rem);
    white-space: nowrap;
  }

  .stat-number-crm {
    font-size: clamp(1.22rem, 5.6vw, 1.65rem);
  }

  .stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.07em;
  }

  .contact-card { padding: 22px; }

  .phone-number { white-space: nowrap; }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 34px;
    padding-bottom: 36px;
  }
  .footer-brand,
  .footer-schedule { grid-column: 1 / -1; }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-credentials { justify-content: center; }

  .specialty-intro .container { gap: 32px; }
  .specialty-intro { padding: 20px 0; }
  .specialty-intro-image img { height: 300px; }
  .specialty-info { padding: 30px 0 0; }
  .info-card { padding: 36px 24px; }
  .procedure-note { margin-left: 0; padding: 16px; }
  .specialty-info .info-card:nth-child(2) {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .specialty-info .info-card:nth-child(2):hover {
    transform: none;
    box-shadow: none;
  }
  .specialty-cta { padding: 56px 0; }
  .specialty-cta .container { width: calc(100% - 40px); padding: 44px 30px; border-radius: 20px; }
  .specialty-cta-actions { flex-direction: column; }

  .about-page { padding: 56px 0 68px; }
  .about-page .container { gap: 34px; }
  .about-page-image img {
    height: 350px;
    aspect-ratio: auto;
  }
  .about-page-heading { padding-bottom: 26px; margin-bottom: 28px; }
  .about-page-title { font-size: 2.35rem; }
  .commitment-block { padding: 30px 28px; margin-top: 34px; }
}

@media (max-width: 480px) {
  .site-footer { padding: 52px 0 24px; }

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

  .specialty-cta .container { width: calc(100% - 32px); padding: 38px 22px; border-radius: 16px; }

  .about-page-registration { flex-direction: column; gap: 5px; }
  .about-page-registration span + span { padding-left: 0; border-left: 0; }
  .about-page-title { font-size: 2.05rem; }
  .about-page-specialty { font-size: 1.16rem; }
  .about-page-copy .about-page-lead { font-size: 1.12rem; }
  .commitment-block { padding: 28px 22px; }
  .commitment-final { font-size: 1.08rem; }

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

  .specialty-card { height: 240px; }

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

  .faq-item summary {
    min-height: 66px;
    padding: 18px;
    font-size: 0.93rem;
  }

  .faq-answer { padding: 0 18px 20px; }

  .hero-actions { flex-direction: column; width: 100%; }

  .btn { justify-content: center; width: 100%; }

  .hero-image-wrap { padding-bottom: 0; }

  .hero-badge {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    margin-top: 0;
  }
}
