/* ============================================================
   MADP — Equipamentos Hospitalares · Sistema visual
   Estética clínica e confiável · azuis médicos · muito branco
   ============================================================ */

:root {
  /* Paleta — extraída do site real: primária #000032, secundária #005be2 */
  --blue-900: #000032;   /* primária real — azul marinho profundo */
  --blue-800: #0a1a5c;
  --blue-600: #005be2;   /* secundária real — azul elétrico */
  --blue-500: #1f7af0;   /* acento */
  --blue-300: #6fb2f5;
  --blue-100: #d6e4fb;
  --blue-50:  #eef3fc;
  --tint:     #e8eff8;

  --teal-600: #0f9d8c;   /* toque "cuidado" / pet */
  --teal-500: #16b5a0;

  --ink-900: #0c1d2e;
  --ink-700: #243b50;
  --ink-500: #4a6173;
  --ink-400: #6c8294;
  --line:    #dde7ef;
  --line-soft:#eaf0f5;

  --white: #ffffff;
  --paper: #f7fafc;

  --whats: #25d366;

  /* Tipografia */
  --font-display: "Schibsted Grotesk", system-ui, sans-serif;
  --font-body: "Public Sans", system-ui, sans-serif;

  /* Sombras */
  --sh-sm: 0 1px 2px rgba(12,29,46,.06), 0 1px 3px rgba(12,29,46,.05);
  --sh-md: 0 6px 20px -6px rgba(0,91,226,.18), 0 2px 6px rgba(12,29,46,.06);
  --sh-lg: 0 24px 60px -18px rgba(0,91,226,.28), 0 8px 24px -12px rgba(12,29,46,.12);
  --sh-blue: 0 18px 40px -14px rgba(0,91,226,.45);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 30px;

  --maxw: 1200px;
  --nav-h: 78px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-900);
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

/* Tipo utilitário */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--blue-500);
  display: inline-block;
}
.eyebrow.center::before { display: none; }

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section.tint { background: var(--blue-50); }
.section.ink {
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(23,137,201,.22), transparent 60%),
    linear-gradient(180deg, var(--blue-900), #061f39);
  color: #cfe2f1;
}
.section.ink h1, .section.ink h2, .section.ink h3 { color: #fff; }

.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(30px, 4.2vw, 48px);
  margin-top: 16px;
}
.section-head p {
  margin-top: 18px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-500);
}
.section.ink .section-head p { color: #a9c6dd; }

/* ===================== Botões ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--blue-800);
  color: #fff;
  box-shadow: var(--sh-blue);
}
.btn-primary:hover { background: var(--blue-600); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--blue-800);
  border-color: var(--blue-100);
}
.btn-ghost:hover { border-color: var(--blue-500); background: var(--blue-50); transform: translateY(-2px); }
.btn-light {
  background: #fff;
  color: var(--blue-800);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }
.btn-whats {
  background: var(--whats);
  color: #073;
  color: #064e2c;
  box-shadow: 0 16px 34px -12px rgba(37,211,102,.6);
}
.btn-whats:hover { transform: translateY(-2px); filter: brightness(1.04); }
.btn-lg { padding: 17px 32px; font-size: 16px; }

/* ===================== Navbar ===================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background .3s, box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(12,29,46,.4);
}
/* Navbar sobre page-hero escuro (topo de páginas internas) */
.nav.over-dark {
  border-bottom-color: rgba(255,255,255,.12);
}
.nav.over-dark .logo-text b { color: #fff; }
.nav.over-dark .logo-text span { color: rgba(255,255,255,.7); }
.nav.over-dark .nav-list > li > a { color: rgba(255,255,255,.9); }
.nav.over-dark .nav-list > li > a:hover { color: #fff; background: rgba(255,255,255,.12); }
.nav.over-dark .nav-list > li > a.active { color: #fff; }
.nav.over-dark .nav-list > li > a.active::after { background: #fff; }
.nav.over-dark .nav-list > li > a .chev { opacity: .85; }
.nav.over-dark .btn-primary { background: #fff; color: var(--blue-800); box-shadow: 0 8px 24px rgba(0,0,0,.25); }
.nav.over-dark .btn-primary:hover { background: var(--blue-50); }
.nav.over-dark .nav-burger { border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.1); }
.nav.over-dark .nav-burger span,
.nav.over-dark .nav-burger span::before,
.nav.over-dark .nav-burger span::after { background: #fff; }
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 2px; }
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink-700);
  padding: 9px 13px;
  border-radius: 8px;
  position: relative;
  transition: color .2s, background .2s;
}
.nav-list > li > a:hover { color: var(--blue-800); background: var(--blue-50); }
.nav-list > li > a.active { color: var(--blue-800); }
.nav-list > li > a.active::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 2px;
  height: 2px; background: var(--blue-500); border-radius: 2px;
}
.nav-list > li > a .chev { width: 14px; height: 14px; opacity: .7; transition: transform .25s; display: inline-flex; }
.has-sub.open > a .chev,
.has-sub:hover > a .chev { transform: rotate(180deg); }

/* Ponte invisível: preenche o vão entre o toggle e o submenu
   para que o hover não se perca ao mover o mouse para o submenu. */
.has-sub::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 10px;
  pointer-events: auto;
}

/* Submenu (dropdown) */
.nav-submenu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--sh-lg);
  padding: 8px;
  display: none;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .22s, transform .22s;
  z-index: 110;
}
.has-sub:hover > .nav-submenu,
.has-sub.open > .nav-submenu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.nav-submenu a {
  display: block;
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-700);
  border-radius: 9px;
  transition: background .18s, color .18s;
}
.nav-submenu a:hover { background: var(--blue-50); color: var(--blue-800); }
.nav-submenu a.sub-active { background: var(--blue-50); color: var(--blue-800); }
.nav-submenu a.sub-active::before {
  content: ""; display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--blue-500); margin-right: 8px;
  vertical-align: middle;
}

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-burger {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  background: #fff; border-radius: 10px; cursor: pointer; align-items: center; justify-content: center;
}
.nav-burger span, .nav-burger span::before, .nav-burger span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink-900); border-radius: 2px; transition: .3s;
}
.nav-burger span::before { transform: translateY(-6px); }
.nav-burger span::after { transform: translateY(4px); }
.nav.open .nav-burger span { background: transparent; }
.nav.open .nav-burger span::before { transform: rotate(45deg); }
.nav.open .nav-burger span::after { transform: rotate(-45deg) translateY(-1px) translateX(1px); }

/* Logo (PNG real do cliente) */
.logo { display: inline-flex; align-items: center; gap: 12px; position: relative; }
.logo-img {
  height: 62px;
  width: auto;
  display: block;
  transition: filter .25s ease;
}
.nav.over-dark .logo-img {
  filter: brightness(0) invert(1);
}
.footer-logo .logo-img {
  height: 200px;
  filter: brightness(0) invert(1);
}

/* ===================== Cards ===================== */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--blue-100); }
.card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--blue-50); color: var(--blue-600);
  margin-bottom: 20px;
}
.card-icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 21px; margin-bottom: 10px; }
.card p { color: var(--ink-500); font-size: 15.5px; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Pills / badges */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  background: var(--blue-50); color: var(--blue-700, #0a4d8c);
  font-size: 13px; font-weight: 700; border: 1px solid var(--blue-100);
}
.badge-auth {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 16px; border-radius: 999px;
  background: linear-gradient(120deg, rgba(23,137,201,.16), rgba(15,157,140,.14));
  border: 1px solid var(--blue-100);
  font-weight: 700; font-size: 13.5px; color: var(--blue-800);
}
.badge-auth svg { width: 17px; height: 17px; }

/* Live dot (indicador "ao vivo" pulsante) */
.live-dot {
  position: relative;
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--whats);
  box-shadow: 0 0 0 0 rgba(37,211,102,.7);
  margin-right: 2px;
  flex: none;
  transform-origin: center;
}
.live-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--whats);
  animation: livePulse 1.6s ease-out infinite;
  z-index: -1;
}
@keyframes livePulse {
  0%   { transform: scale(1);   opacity: .7; }
  100% { transform: scale(3.2); opacity: 0; }
}

/* ===================== Reveal anim ===================== */
[data-reveal] { opacity: 0; }
.no-anim [data-reveal] { opacity: 1 !important; transform: none !important; }

/* ===================== Footer ===================== */
.footer {
  background: linear-gradient(180deg, #061f39, #04172b);
  color: #9fbdd4;
  padding-top: 72px;
}
.footer a { color: #c2d8e9; transition: color .2s; }
.footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer h4 { color: #fff; font-size: 14px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 20px; font-family: var(--font-body); font-weight: 700; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; font-size: 14.5px; }
.footer .logo-text b { color: #fff; }
.footer .logo-text span { color: #7fa0bb; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 26px 0; font-size: 13px; color: #6f90ab; flex-wrap: wrap;
}
.footer-contact-row { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; margin-bottom: 14px; }
.footer-contact-row svg { width: 18px; height: 18px; flex: none; margin-top: 2px; color: var(--blue-300); }

/* ===================== Hero base ===================== */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 60px);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(900px 600px at 80% 10%, rgba(23,137,201,.16), transparent 60%),
    linear-gradient(170deg, #ffffff 0%, var(--blue-50) 55%, #e3eef8 100%);
}
.hero-canvas { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

/* Page hero (interior) */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 72px) 0 64px;
  background:
    radial-gradient(800px 420px at 88% -20%, rgba(23,137,201,.18), transparent 60%),
    linear-gradient(165deg, var(--blue-900) 0%, #0a3a66 60%, #0a4d8c 100%);
  color: #d7e8f5;
  overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 26px 26px; opacity: .5; pointer-events: none;
}
.page-hero h1 { color: #fff; font-size: clamp(34px, 5vw, 60px); position: relative; }
.page-hero p { color: #aecbe2; font-size: clamp(16px, 1.5vw, 20px); max-width: 640px; margin-top: 18px; position: relative; }
.crumbs { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: #8fb4d3; margin-bottom: 22px; position: relative; }
.crumbs a:hover { color: #fff; }
.crumbs svg { width: 14px; height: 14px; opacity: .6; }

/* Stat */
.stat-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(40px, 5vw, 60px); color: var(--blue-800); line-height: 1; letter-spacing: -0.03em; }
.stat-num .suffix { color: var(--blue-500); }
.stat-label { color: var(--ink-500); font-size: 15px; margin-top: 10px; font-weight: 500; }

/* List checks */
.checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; font-size: 16px; color: var(--ink-700); }
.checklist li svg { width: 22px; height: 22px; flex: none; color: var(--teal-600); margin-top: 1px; }

/* Media image */
.media {
  border-radius: var(--r-lg);
  overflow: hidden;
  background:
    radial-gradient(400px 300px at 70% 20%, rgba(255,255,255,.5), transparent 60%),
    linear-gradient(150deg, var(--blue-100), var(--blue-300));
  box-shadow: var(--sh-lg);
  position: relative;
  min-height: 220px;
}
.media img { width: 100%; height: 100%; object-fit: cover; display: block; position: relative; z-index: 2; }
.media-ph {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  color: var(--blue-800); text-align: center; padding: 24px;
}
.media-ph svg { width: 56px; height: 56px; opacity: .8; }
.media-ph span { font-weight: 700; font-size: 14px; letter-spacing: .04em; max-width: 240px; }
.media-tag {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  padding: 8px 14px; border-radius: 999px; font-size: 12.5px; font-weight: 700; color: var(--blue-800);
  display: flex; align-items: center; gap: 7px;
}
.media-tag svg { width: 14px; height: 14px; }

/* CTA band */
.cta-band {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  background:
    radial-gradient(600px 300px at 88% 20%, rgba(23,137,201,.35), transparent 60%),
    linear-gradient(120deg, var(--blue-800), var(--blue-900));
  color: #fff;
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
}
.cta-band h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); }
.cta-band p { color: #bcd8ee; max-width: 560px; margin: 16px auto 30px; font-size: 17px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* WhatsApp float */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--whats); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 14px 34px -8px rgba(37,211,102,.6);
  transition: transform .25s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--whats); animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.8); opacity: 0; } }

/* Logo cloud (marcas) */
.brand-tile {
  display: grid; place-items: center;
  height: 110px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-md);
  font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--ink-700);
  transition: transform .3s, box-shadow .3s, color .3s, border-color .3s;
  text-align: center; padding: 12px;
}
.brand-tile:hover { transform: translateY(-5px); box-shadow: var(--sh-md); color: var(--blue-700,#0a4d8c); border-color: var(--blue-100); }
.brand-tile small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-400); margin-top: 4px; }

/* Forms */
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 13.5px; font-weight: 700; color: var(--ink-700); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--ink-900);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 11px; background: #fff;
  transition: border-color .2s, box-shadow .2s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(23,137,201,.14);
}
.field textarea { resize: vertical; min-height: 120px; }

/* Map */
.map-frame { border: 0; width: 100%; height: 100%; min-height: 360px; display: block; filter: grayscale(.1) contrast(1.02); }

/* Timeline (notícias) */
.news-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.news-card .news-img { height: 200px; background: var(--blue-100); overflow: hidden; }
.news-card .news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.news-card:hover .news-img img { transform: scale(1.06); }
.news-body { padding: 24px 26px 28px; }
.news-date { font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--blue-500); }
.news-card h3 { font-size: 20px; margin: 10px 0 10px; }

/* ===================== Responsivo ===================== */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
/* Navegação: troca para menu hambúrguer antes de estourar */
@media (max-width: 1080px) {
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 14px 24px 22px;
    box-shadow: var(--sh-lg);
    transform: translateY(-130%); transition: transform .35s cubic-bezier(.2,.8,.2,1);
    overflow-y: auto; max-height: calc(100vh - var(--nav-h));
  }
  .nav.open .nav-links { transform: translateY(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-list > li > a { padding: 13px; font-size: 16px; }
  .nav-list > li > a.active::after { display: none; }
  /* Submenu vira acordeão no mobile — desativa hover do desktop */
  .has-sub:hover > .nav-submenu { display: none; opacity: 0; }
  .has-sub.open > .nav-submenu { display: block !important; opacity: 1; }
  .nav-submenu {
    position: static;
    box-shadow: none;
    border: 0;
    background: var(--blue-50);
    border-radius: 10px;
    margin: 4px 0 6px;
    padding: 4px;
    transform: none;
    display: none;
  }
  .has-sub.open > .nav-submenu { display: block; }
  .nav-submenu a { padding: 11px 14px; }
  .nav-burger { display: inline-flex; }
  .nav-cta .btn:not(.nav-burger) { display: none; }
  /* Quando menu mobile abre sobre page-hero escuro: reverte cores para legibilidade */
  .nav.open .logo-text b { color: var(--ink-900); }
  .nav.open .logo-text span { color: var(--ink-400); }
  .nav.open .nav-list > li > a,
  .nav.open .nav-list > li > a.active { color: var(--ink-700); }
  .nav.open .nav-list > li > a:hover { color: var(--blue-800); background: var(--blue-50); }
  .nav.open .nav-burger { border-color: var(--line); background: #fff; }
  .nav.open .nav-burger span,
  .nav.open .nav-burger span::before,
  .nav.open .nav-burger span::after { background: var(--ink-900); }
}
@media (max-width: 760px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  :root { --nav-h: 68px; }
}
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 40px; } }
