/* ==========================================================================
   DENTAL SÎRBU — Design tokens
   Paletă: magenta de brand + off-white + antracit, inspirată din sigla clinicii
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  /* Brand */
  --magenta:        #B21569;
  --magenta-dark:   #7E0F4C;
  --magenta-light:  #F7E3EF;
  --magenta-lighter:#FCF3F8;
  --magenta-line:   #E9B8D3;

  /* Neutrals */
  --ink:            #1C1E2A;
  --ink-soft:       #565B6E;
  --ink-faint:      #8991A6;
  --paper:          #FDFCFB;
  --gray-100:       #F5F3F2;
  --gray-200:       #ECE9E7;
  --white:          #FFFFFF;

  /* Type */
  --font-display: 'Manrope', 'Segoe UI', sans-serif;
  --font-body:    'Inter', 'Segoe UI', sans-serif;

  /* Radii / shadow */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(28, 30, 42, 0.06);
  --shadow-md: 0 12px 32px rgba(28, 30, 42, 0.10);
  --shadow-magenta: 0 12px 28px rgba(178, 21, 105, 0.22);

  --container: 1180px;
}

* { box-sizing: border-box; }
html, body { overflow-x: hidden; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 0.5em;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; color: var(--ink-soft); }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { position: relative; }

/* Focus visibility (accessibility) */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--magenta);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* --------------------------------------------------------------------------
   Eyebrow / labels
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--magenta);
  background: var(--magenta-lighter);
  padding: 7px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--magenta);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--magenta);
  color: var(--white);
  box-shadow: var(--shadow-magenta);
}
.btn-primary:hover { background: var(--magenta-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--magenta); color: var(--magenta); transform: translateY(-2px); }
.btn-ghost-light {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.22); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 13.5px; }

/* --------------------------------------------------------------------------
   HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 252, 251, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--gray-200);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  color: var(--ink);
  flex-shrink: 0;
}
.brand svg { width: 36px; height: 36px; flex-shrink: 0; }
.brand span { display: block; }
.brand small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.03em;
}

.main-nav { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-soft);
  padding: 8px 12px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  transition: background 0.16s ease, color 0.16s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--magenta); background: var(--magenta-lighter); }
.main-nav a.nav-highlight {
  color: var(--magenta);
}

.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  padding: 10px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-pill);
}
.header-phone svg { width: 17px; height: 17px; color: var(--magenta); }
.header-phone:hover { border-color: var(--magenta-line); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 980px) {
  .main-nav { display: none; }
  .header-phone span.phone-text { display: none; }
  .nav-toggle { display: flex; }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0;
  background: rgba(20, 12, 20, 0.45);
  z-index: 200;
  display: none;
}
.mobile-drawer.open { display: block; }
.mobile-drawer-panel {
  position: absolute; top: 0; right: 0;
  width: min(340px, 86vw); height: 100%;
  background: var(--white);
  padding: 26px 22px;
  box-shadow: -20px 0 40px rgba(0,0,0,0.15);
  display: flex; flex-direction: column; gap: 6px;
}
.mobile-drawer-panel a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 10px;
  border-bottom: 1px solid var(--gray-200);
  color: var(--ink);
}
.mobile-drawer-panel a.nav-highlight { color: var(--magenta); }
.mobile-drawer-close {
  align-self: flex-end;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  margin-bottom: 10px;
}
.mobile-drawer-foot { margin-top: auto; display: flex; flex-direction: column; gap: 10px; }

/* Sticky mobile call bar */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 150;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
}
@media (max-width: 780px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 74px; }
}
.mobile-cta-bar a { flex: 1; }
.mobile-cta-bar .btn { width: 100%; padding: 13px 10px; font-size: 14px; }

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.hero {
  padding: 64px 0 100px;
  overflow: hidden;
  position: relative;
  background: var(--paper);
}
.hero-wave-bg {
  position: absolute;
  top: -60px; left: 0; right: 0;
  width: 100%;
  z-index: 0;
  opacity: 0.9;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(34px, 4.4vw, 54px);
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--magenta); }
.hero-lead {
  font-size: 17.5px;
  color: var(--ink-soft);
  max-width: 500px;
  margin-bottom: 30px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }

.hero-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-stats .stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
}
.hero-stats .stat span {
  font-size: 13px;
  color: var(--ink-faint);
}

.hero-visual { position: relative; }
.hero-visual-card {
  border-radius: var(--r-lg);
  background: linear-gradient(155deg, var(--magenta) 0%, #7E0F4C 100%);
  aspect-ratio: 4 / 4.6;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}
.hero-visual-card svg.decor { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.5; }
.hero-visual-caption {
  position: relative;
  z-index: 1;
  color: var(--white);
}
.hero-visual-caption .eyebrow { background: rgba(255,255,255,0.16); color: var(--white); }
.hero-visual-caption .eyebrow::before { background: var(--white); }
.hero-visual-caption h3 { color: var(--white); font-size: 20px; margin-bottom: 6px; }
.hero-visual-caption p { color: rgba(255,255,255,0.85); font-size: 14px; margin: 0; }

.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 230px;
  animation: floaty 5s ease-in-out infinite;
}
.floating-card .icon-badge {
  width: 38px; height: 38px; border-radius: 12px;
  background: var(--magenta-lighter);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.floating-card .icon-badge svg { width: 19px; height: 19px; color: var(--magenta); }
.floating-card strong { display: block; font-family: var(--font-display); font-size: 13.5px; }
.floating-card span { font-size: 12px; color: var(--ink-faint); }
.floating-card.fc-1 { top: -6%; left: -10%; }
.floating-card.fc-2 { bottom: 42%; right: -12%; animation-delay: 1.2s; }
@media (max-width: 640px) {
  .floating-card { max-width: 175px; padding: 10px 12px; }
  .floating-card.fc-1 { left: -4%; top: -4%; }
  .floating-card.fc-2 { right: -4%; }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto 20px; }
}

/* --------------------------------------------------------------------------
   Trust strip
   -------------------------------------------------------------------------- */
.trust-strip { background: var(--ink); padding: 30px 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-item { display: flex; align-items: center; gap: 12px; color: var(--white); }
.trust-item .icon-badge {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(178, 21, 105, 0.28);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-item .icon-badge svg { width: 21px; height: 21px; color: #F4A9CE; }
.trust-item strong { display: block; font-family: var(--font-display); font-size: 14.5px; }
.trust-item span { font-size: 12.5px; color: rgba(255,255,255,0.6); }
@media (max-width: 860px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }

/* --------------------------------------------------------------------------
   Section heading
   -------------------------------------------------------------------------- */
.section { padding: 100px 0; }
.section.alt { background: var(--gray-100); }
.section.tint { background: var(--magenta-lighter); }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin: 0 0 48px; text-align: left; }
.section-head h2 { font-size: clamp(28px, 3.2vw, 38px); }
.section-head p { font-size: 16.5px; }

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

/* --------------------------------------------------------------------------
   Differentiation cards (4 key services)
   -------------------------------------------------------------------------- */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.diff-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.diff-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--magenta-line); }
.diff-card .icon-badge {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--magenta-lighter);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.diff-card .icon-badge svg { width: 26px; height: 26px; color: var(--magenta); }
.diff-card h3 { font-size: 17.5px; margin-bottom: 8px; }
.diff-card p { font-size: 14.5px; margin: 0; }
@media (max-width: 900px) { .diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .diff-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Services grid (main + secondary)
   -------------------------------------------------------------------------- */
.services-grid-primary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.services-grid-secondary {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 26px 20px;
  border: 1px solid var(--gray-200);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card.featured {
  background: linear-gradient(160deg, var(--magenta) 0%, var(--magenta-dark) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-magenta);
}
.service-card.featured h3, .service-card.featured p, .service-card.featured a { color: var(--white); }
.service-card.featured .icon-badge { background: rgba(255,255,255,0.18); }
.service-card.featured .icon-badge svg { color: var(--white); }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.service-card .icon-badge {
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--magenta-lighter);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.service-card .icon-badge svg { width: 22px; height: 22px; color: var(--magenta); }
.service-card h3 { font-size: 16px; margin-bottom: 6px; }
.service-card p { font-size: 13.5px; margin-bottom: 12px; }
.service-card .card-link { font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--magenta); display: inline-flex; align-items: center; gap: 4px; }
.service-card.small { padding: 20px 16px; text-align: center; }
.service-card.small .icon-badge { margin: 0 auto 12px; }
.service-card.small h3 { font-size: 14px; margin-bottom: 0; }

@media (max-width: 980px) {
  .services-grid-primary { grid-template-columns: repeat(2, 1fr); }
  .services-grid-secondary { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .services-grid-primary { grid-template-columns: 1fr; }
  .services-grid-secondary { grid-template-columns: repeat(2, 1fr); }
}

.view-all-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  color: var(--magenta);
}
.section-head-row {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 20px;
  margin-bottom: 40px; flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Sedation spotlight (inhalosedare / analgosedare)
   -------------------------------------------------------------------------- */
.sedation-section { background: var(--ink); color: var(--white); position: relative; overflow: hidden; }
.sedation-section .wave-divider-top { position: absolute; top: 0; left: 0; width: 100%; line-height: 0; }
.sedation-section .section-head p { color: rgba(255,255,255,0.68); }
.sedation-section .section-head h2 { color: var(--white); }
.sedation-section .eyebrow { background: rgba(255,255,255,0.1); color: #F4A9CE; }
.sedation-section .eyebrow::before { background: #F4A9CE; }

.sedation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 44px;
}
.sedation-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: 34px;
}
.sedation-card .num {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700;
  color: #F4A9CE;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.sedation-card h3 { color: var(--white); font-size: 22px; margin-bottom: 12px; }
.sedation-card p { color: rgba(255,255,255,0.75); font-size: 15px; }
.sedation-card ul { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.sedation-card ul li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13.5px; color: rgba(255,255,255,0.85);
}
.sedation-card ul li svg { width: 16px; height: 16px; color: #F4A9CE; flex-shrink: 0; margin-top: 3px; }
.sedation-card .tag {
  display: inline-block;
  margin-top: 18px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 14px;
}

.sedation-points {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.sedation-point {
  text-align: center;
  padding: 18px 10px;
}
.sedation-point .icon-badge {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.sedation-point .icon-badge svg { width: 21px; height: 21px; color: #F4A9CE; }
.sedation-point span { font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 600; font-family: var(--font-display); }

.sedation-cta { text-align: center; }

@media (max-width: 900px) {
  .sedation-grid { grid-template-columns: 1fr; }
  .sedation-points { grid-template-columns: repeat(2, 1fr); }
}

/* --------------------------------------------------------------------------
   Kids & parents section
   -------------------------------------------------------------------------- */
.kids-section .container { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.kids-visual {
  border-radius: var(--r-lg);
  background: linear-gradient(150deg, var(--magenta-light) 0%, var(--white) 100%);
  aspect-ratio: 5/4.4;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--magenta-line);
}
.kids-visual svg { width: 62%; }
.kids-points { display: flex; flex-direction: column; gap: 18px; margin: 26px 0 30px; }
.kids-point { display: flex; gap: 14px; align-items: flex-start; }
.kids-point .icon-badge {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  background: var(--magenta-lighter);
  display: flex; align-items: center; justify-content: center;
}
.kids-point .icon-badge svg { width: 19px; height: 19px; color: var(--magenta); }
.kids-point strong { display: block; font-family: var(--font-display); font-size: 15px; margin-bottom: 2px; }
.kids-point p { font-size: 14px; margin: 0; }
@media (max-width: 900px) {
  .kids-section .container { grid-template-columns: 1fr; }
  .kids-visual { order: -1; max-width: 380px; margin: 0 auto; }
}

/* --------------------------------------------------------------------------
   Team
   -------------------------------------------------------------------------- */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.team-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  gap: 22px;
}
.team-avatar {
  width: 160px; height: 160px; border-radius: 50%;
  background: linear-gradient(150deg, var(--magenta) 0%, var(--magenta-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
}
.team-card h3 { font-size: 18.5px; margin-bottom: 2px; }
.team-role { color: var(--magenta); font-family: var(--font-display); font-weight: 700; font-size: 13px; margin-bottom: 10px; display: block; }
.team-card p { font-size: 14px; margin-bottom: 0; }
.team-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.team-tags span {
  font-size: 11.5px; font-weight: 600; font-family: var(--font-display);
  background: var(--magenta-lighter); color: var(--magenta);
  padding: 4px 10px; border-radius: var(--r-pill);
}
@media (max-width: 780px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-card { flex-direction: column; }
}

/* --------------------------------------------------------------------------
   Why choose us
   -------------------------------------------------------------------------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { display: flex; gap: 16px; }
.why-card .num {
  font-family: var(--font-display); font-weight: 800; font-size: 26px;
  color: var(--magenta-line);
  flex-shrink: 0;
  line-height: 1;
}
.why-card h3 { font-size: 16px; margin-bottom: 6px; }
.why-card p { font-size: 14px; margin: 0; }
@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 26px;
}
.testi-stars { color: var(--magenta); font-size: 15px; margin-bottom: 12px; letter-spacing: 2px; }
.testi-card p { font-size: 14.5px; font-style: italic; color: var(--ink-soft); }
.testi-name { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.testi-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--magenta-light); color: var(--magenta);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
}
.testi-name strong { font-size: 13.5px; font-family: var(--font-display); }
.testi-name span { font-size: 12px; color: var(--ink-faint); display: block; }
@media (max-width: 860px) { .testi-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Video section
   -------------------------------------------------------------------------- */
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.video-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.video-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(150deg, var(--ink) 0%, #34283a 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.video-play {
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--magenta);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}
.video-card:hover .video-play { transform: scale(1.08); }
.video-play svg { width: 22px; height: 22px; color: var(--white); margin-left: 3px; }
.video-body { padding: 22px 24px; }
.video-body h3 { font-size: 16.5px; margin-bottom: 8px; }
.video-body p { font-size: 13.5px; margin-bottom: 14px; }
@media (max-width: 780px) { .video-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Final CTA
   -------------------------------------------------------------------------- */
.final-cta {
  background: linear-gradient(135deg, var(--magenta) 0%, var(--magenta-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 84px 0;
}
.final-cta h2 { color: var(--white); font-size: clamp(26px, 3.4vw, 36px); }
.final-cta p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 32px; font-size: 16px; }
.final-cta .hero-ctas { justify-content: center; }

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.75); padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand { color: var(--white); margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.6); max-width: 260px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 {
  color: var(--white); font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col li { font-size: 14px; color: rgba(255,255,255,0.65); }
.footer-col a:hover { color: var(--white); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; font-size: 14px; }
.footer-contact-item svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; color: #F4A9CE; }
.footer-emergency {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  padding: 18px;
  margin-top: 6px;
}
.footer-emergency strong { display: block; color: var(--white); font-size: 13.5px; margin-bottom: 10px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; font-size: 12.5px; color: rgba(255,255,255,0.45);
  flex-wrap: wrap; gap: 10px;
}
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Inner page header (page banner for subpages)
   -------------------------------------------------------------------------- */
.page-banner {
  background: var(--gray-100);
  padding: 56px 0 44px;
  text-align: center;
}
.page-banner h1 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 10px; }
.breadcrumb { font-size: 13.5px; color: var(--ink-faint); margin-bottom: 14px; }
.breadcrumb a { color: var(--magenta); }

/* --------------------------------------------------------------------------
   Treatment detail blocks (used on tratamente.php / inhalosedare page)
   -------------------------------------------------------------------------- */
.treatment-block {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: center;
  padding: 52px 0;
  border-bottom: 1px solid var(--gray-200);
}
.treatment-block:last-child { border-bottom: none; }
.treatment-block.reverse { direction: rtl; }
.treatment-block.reverse > * { direction: ltr; }
.treatment-icon-wrap {
  aspect-ratio: 1/1;
  border-radius: var(--r-lg);
  background: var(--magenta-lighter);
  display: flex; align-items: center; justify-content: center;
}
.treatment-icon-wrap svg { width: 40%; height: 40%; color: var(--magenta); }
.treatment-block h2 { font-size: 24px; }
.treatment-block ul { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.treatment-block ul li { display: flex; gap: 10px; font-size: 14.5px; color: var(--ink-soft); }
.treatment-block ul li svg { width: 16px; height: 16px; color: var(--magenta); flex-shrink: 0; margin-top: 4px; }
@media (max-width: 780px) {
  .treatment-block, .treatment-block.reverse { grid-template-columns: 1fr; direction: ltr; }
  .treatment-icon-wrap { max-width: 220px; margin: 0 auto; }
}

/* --------------------------------------------------------------------------
   Contact page
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.contact-info-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-lg); padding: 28px; margin-bottom: 18px;
}
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: 13.5px; margin-bottom: 7px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 14.5px;
  background: var(--white);
  color: var(--ink);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--magenta);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 12.5px; color: var(--ink-faint); margin-top: 10px; }
.alert-success, .alert-error {
  padding: 14px 18px; border-radius: var(--r-sm); font-size: 14px; margin-bottom: 20px;
}
.alert-success { background: #E7F5EC; color: #1D6B3D; border: 1px solid #BFE6CD; }
.alert-error { background: #FBE9EC; color: #A32236; border: 1px solid #F3C4CC; }
.map-embed-wrap { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--gray-200); margin-top: 24px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* Honeypot field (spam trap, hidden from real users) */
.hp-field { position: absolute; left: -9999px; top: -9999px; }

/* --------------------------------------------------------------------------
   Reveal-on-scroll utility
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal.drop { transform: translateY(-40px); }
.reveal.drop.in-view { transform: translateY(0); }
.reveal.zoom { transform: scale(1.12); }
.reveal.zoom.in-view { transform: scale(1); }

/* --------------------------------------------------------------------------
   Floating Phone & Cookie Banner
   -------------------------------------------------------------------------- */
.floating-phone {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: var(--magenta);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(178, 21, 105, 0.4);
  z-index: 9998;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.floating-phone:hover {
  transform: scale(1.1);
  background-color: var(--magenta-dark);
.floating-phone { position: fixed; bottom: 30px; left: 30px; background: var(--magenta); color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(178,21,105,0.4); z-index: 100; transition: transform 0.3s, box-shadow 0.3s; }
.floating-phone:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 8px 25px rgba(178,21,105,0.6); color: white; }
.floating-phone svg { width: 28px; height: 28px; }

.floating-whatsapp { position: fixed; bottom: 30px; right: 30px; background: #25D366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(37,211,102,0.4); z-index: 100; transition: transform 0.3s, box-shadow 0.3s; }
.floating-whatsapp:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 8px 25px rgba(37,211,102,0.6); color: white; }
.floating-whatsapp svg { width: 32px; height: 32px; }

@media (max-width: 768px) {
  .floating-phone { bottom: 20px; left: 20px; width: 50px; height: 50px; }
  .floating-phone svg { width: 24px; height: 24px; }
  .floating-whatsapp { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .floating-whatsapp svg { width: 28px; height: 28px; }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000;
  color: #fff;
  z-index: 9999;
  padding: 20px;
  font-size: 11px;
  line-height: 1.4;
  font-family: Arial, sans-serif;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.5);
}
.cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  align-items: center;
}
.cookie-text-left { flex: 2; }
.cookie-text-right { flex: 2; }
.cookie-divider {
  width: 1px;
  background-color: #333;
  align-self: stretch;
}
.cookie-actions {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-width: 200px;
}
.cookie-banner strong {
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
  color: #fff;
}
.cookie-banner p { margin: 0 0 10px 0; color: #ccc; }
.cookie-banner a { color: #3a85eb; text-decoration: none; }
.cookie-banner a:hover { text-decoration: underline; }
.btn-accept-cookie {
  background-color: #008000;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-weight: bold;
  font-size: 13px;
  cursor: pointer;
  border-radius: 2px;
  width: 100%;
}
.btn-accept-cookie:hover { background-color: #006600; }
.link-cookie-settings {
  color: #fff !important;
  text-decoration: underline !important;
  font-size: 11px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 900px) {
  .cookie-content { flex-direction: column; }
  .cookie-divider { display: none; }
  .cookie-actions { width: 100%; margin-top: 10px; }
  .cookie-banner { padding-bottom: calc(20px + env(safe-area-inset-bottom)); }
}
