/* ════════════════════════════════════════════════════
   DAISA — Design System v4
   Paleta: Navy #0a2050 / Vermelho #d5202a / Branco / Cinza
   ════════════════════════════════════════════════════ */
:root {
  --navy:   #0a2050;
  --navy-d: #06153a;
  --navy-l: #1a3570;
  --red:    #d5202a;
  --red-d:  #b01820;
  --gold:   #c49a28;
  --white:  #ffffff;
  --off:    #f4f6fb;
  --off2:   #eaeff8;
  --ink:    #111827;
  --mid:    #4b5a72;
  --muted:  #8496b0;
  --line:   #dde5f3;
  --line-d: #1e345e;
  --r:      10px;
  --maxw:   1200px;
  --nav-h:  76px;
}

/* reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Sora', system-ui, sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ── Tipografia ── */
h1, h2, h3, h4, h5 {
  font-family: 'Archivo', sans-serif;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--navy);
}
.mono { font-family: 'Space Mono', monospace; }

/* ── Layout ── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.sec  { padding: 88px 0; }
.sec--off  { background: var(--off); }
.sec--navy { background: var(--navy); }
.sec--navy h2, .sec--navy h3 { color: #fff; }
.sec--navy p  { color: var(--muted); }

.sec-label {
  font-family: 'Space Mono', monospace;
  font-size: 11.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}
.sec-head { max-width: 680px; margin-bottom: 52px; }
.sec-head h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 14px; }
.sec-head p  { font-size: 17px; color: var(--mid); }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ── Botões ── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 15px;
  padding: 14px 26px; border-radius: var(--r);
  border: 1.5px solid transparent; cursor: pointer; transition: .22s;
}
.btn-red   { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-d); transform: translateY(-2px); box-shadow: 0 10px 28px -8px rgba(213,32,42,.45); }
.btn-navy  { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-l); transform: translateY(-2px); }
.btn-outline { border-color: var(--line); color: var(--navy); background: #fff; }
.btn-outline:hover { border-color: var(--navy); background: var(--off); }
.btn-outline-d { border-color: var(--line-d); color: #fff; background: transparent; }
.btn-outline-d:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.07); }
.btn-sm { font-size: 13.5px; padding: 11px 20px; }

/* ── Navegação ── */
.topbar {
  background: var(--navy-d); color: var(--muted);
  font-size: 13px; border-bottom: 1px solid var(--line-d);
}
.topbar .wrap {
  display: flex; justify-content: space-between; align-items: center;
  height: 38px; gap: 20px;
}
.topbar a:hover { color: #fff; }
.topbar .right  { display: flex; gap: 24px; align-items: center; }
@media(max-width:700px){ .topbar .left { display:none; } }

header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.93); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
nav { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); }
.logo img { height: 44px; width: auto; }
.nav-links {
  display: flex; gap: 6px; list-style: none; align-items: center;
}
.nav-links > li > a {
  padding: 8px 14px; border-radius: 8px; font-weight: 600; font-size: 15px;
  color: var(--navy); transition: .18s; display: flex; align-items: center; gap: 5px;
}
.nav-links > li > a:hover { background: var(--off); }
.nav-links > li > a.active { color: var(--red); }

/* Dropdown */
.has-drop { position: relative; }
.has-drop > a .arr { transition: .2s; }
.has-drop:hover > a .arr { transform: rotate(180deg); }
.drop {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 24px 60px -20px rgba(10,32,80,.25);
  min-width: 220px; padding: 8px; opacity: 0; pointer-events: none;
  transform: translateY(8px); transition: .22s;
  list-style: none; z-index: 70;
}
.has-drop:hover .drop { opacity: 1; pointer-events: auto; transform: none; }
.drop li a {
  display: block; padding: 10px 14px; border-radius: 8px; font-size: 14.5px;
  font-weight: 500; color: var(--ink); transition: .15s;
}
.drop li a:hover { background: var(--off); color: var(--navy); }

.nav-cta  { display: flex; gap: 10px; align-items: center; }
.burger   { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { width: 25px; height: 2px; background: var(--navy); transition: .3s; display: block; }
@media(max-width:1020px){ .nav-links, .nav-cta .btn-outline { display: none; } .burger { display: flex; } }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(80vw,320px);
  background: #fff; border-left: 1px solid var(--line);
  transform: translateX(100%); transition: .32s; z-index: 72;
  padding: 86px 24px 32px; display: flex; flex-direction: column; gap: 4px;
  box-shadow: -20px 0 60px -20px rgba(6,21,58,.3);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  padding: 13px 16px; border-radius: 9px; font-size: 17px; font-weight: 700;
  color: var(--navy); display: block; transition: .15s;
}
.mobile-menu a:hover { background: var(--off); }
.mobile-menu .divider { height: 1px; background: var(--line); margin: 8px 0; }
.mobile-menu .btn { margin-top: 12px; justify-content: center; width: 100%; }
.scrim {
  position: fixed; inset: 0; background: rgba(6,21,58,.45);
  opacity: 0; pointer-events: none; transition: .3s; z-index: 66;
}
.scrim.open { opacity: 1; pointer-events: auto; }

/* ── Hero principal ── */
.hero {
  background: var(--navy-d); color: #fff;
  position: relative; overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  min-height: min(580px, 78vh);
}
.hero-copy {
  position: relative; z-index: 3;
  padding: 72px max(24px, calc((100vw - var(--maxw))/2 + 24px));
  padding-right: 48px;
  display: flex; flex-direction: column; justify-content: center;
  background: linear-gradient(105deg, var(--navy-d) 60%, rgba(6,21,58,.2));
}
.hero-copy .label { color: var(--gold); letter-spacing: .22em; }
.hero-copy h1 {
  font-size: clamp(36px, 5.5vw, 66px); font-weight: 900;
  color: #fff; text-transform: uppercase;
  margin: 16px 0 20px; line-height: 1.0;
}
.hero-copy h1 em { color: var(--red); font-style: normal; }
.hero-copy p { color: #a8bedc; font-size: 17px; max-width: 460px; margin-bottom: 32px; }
.hero-copy .btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-img { position: relative; overflow: hidden; }
.hero-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--navy-d) 0%, rgba(6,21,58,.2) 35%, transparent 60%);
}
.hero-strip {
  background: var(--navy); border-top: 1px solid var(--line-d);
  padding: 0;
}
.hero-strip .wrap {
  display: flex; align-items: center; gap: 32px;
  padding-top: 18px; padding-bottom: 18px;
  flex-wrap: wrap;
}
.hero-strip .hs-label { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: .18em; color: var(--muted); text-transform: uppercase; white-space: nowrap; }
.hero-strip .norms { display: flex; gap: 22px; flex-wrap: wrap; }
.hero-strip .norms b { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 14px; color: #fff; opacity: .88; }
.hero-strip .norms b span { color: #ff7a72; }

/* ── Hero interno (páginas filhas) ── */
.page-hero {
  background: linear-gradient(105deg, var(--navy-d), var(--navy));
  padding: 56px 0 52px; color: #fff;
  border-bottom: 1px solid var(--line-d);
}
.page-hero .label { color: var(--gold); }
.page-hero h1 { font-size: clamp(28px, 4vw, 46px); font-weight: 900; color: #fff; margin-top: 10px; text-transform: uppercase; }
.page-hero p  { color: #a8bedc; margin-top: 12px; font-size: 16px; max-width: 580px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-family: 'Space Mono', monospace; font-size: 12px; color: var(--muted); margin-bottom: 14px; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { opacity: .5; }

/* ── Cards de produto ── */
.prod-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: .25s; text-decoration: none;
}
.prod-card:hover {
  border-color: var(--navy); transform: translateY(-5px);
  box-shadow: 0 24px 52px -24px rgba(10,32,80,.4);
}
.prod-card__img {
  aspect-ratio: 16/10; overflow: hidden; position: relative;
  background: var(--off2);
}
.prod-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.prod-card:hover .prod-card__img img { transform: scale(1.04); }
.prod-card__tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: 'Space Mono', monospace; font-size: 10.5px;
  letter-spacing: .14em; text-transform: uppercase;
  background: var(--red); color: #fff;
  padding: 5px 10px; border-radius: 20px;
}
.prod-card__tag.navy { background: var(--navy); }
.prod-card__tag.gold { background: var(--gold); }
.prod-card__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.prod-card__body h3 { font-size: 19px; font-weight: 800; margin-bottom: 6px; }
.prod-card__body p { font-size: 14px; color: var(--mid); flex: 1; margin-bottom: 16px; }
.prod-card__specs { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.prod-card__specs span {
  font-family: 'Space Mono', monospace; font-size: 11px;
  color: var(--navy); background: var(--off); border: 1px solid var(--line);
  padding: 4px 9px; border-radius: 6px;
}
.prod-card__link {
  font-weight: 700; font-size: 14px; color: var(--red);
  display: inline-flex; gap: 5px; align-items: center; transition: gap .18s;
}
.prod-card:hover .prod-card__link { gap: 9px; }

/* ── Grid genérico ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media(max-width:960px) { .grid-3 { grid-template-columns: 1fr 1fr; } .grid-4 { grid-template-columns: 1fr 1fr; } }
@media(max-width:700px)  { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ── Split layout ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.rev > :first-child { order: 2; }
.split.rev > :last-child  { order: 1; }
@media(max-width:860px) { .split, .split.rev > :first-child, .split.rev > :last-child { grid-template-columns: 1fr; order: unset; } .split { gap: 40px; } }

/* ── Imagem com moldura navy ── */
.img-frame { position: relative; }
.img-frame::before {
  content: ''; position: absolute; top: -18px; left: -18px;
  width: 120px; height: 120px; background: var(--navy); border-radius: 4px; z-index: 0;
}
.img-frame img { position: relative; z-index: 1; border-radius: 8px; width: 100%; box-shadow: 0 28px 56px -28px rgba(10,32,80,.5); }

/* ── Feature list (Por que) ── */
.feat-list { list-style: none; display: flex; flex-direction: column; gap: 26px; }
.feat-list li { display: flex; gap: 18px; align-items: flex-start; }
.feat-ic {
  flex: 0 0 52px; height: 52px; border-radius: 12px;
  background: var(--red); color: #fff; display: grid; place-items: center;
}
.feat-list h4 { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 18px; margin-bottom: 4px; }
.feat-list p  { color: var(--mid); font-size: 14.5px; }

/* ── Stats ── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
@media(max-width:700px) { .stats { grid-template-columns: 1fr 1fr; gap: 32px; } }
.stat__n {
  font-family: 'Archivo', sans-serif; font-weight: 900;
  font-size: clamp(40px, 6vw, 60px); color: #fff; line-height: 1;
}
.stat__n .plus { color: #ff7a72; }
.stat__l {
  font-family: 'Space Mono', monospace; font-size: 12px;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--muted); margin-top: 8px;
}

/* ── Comparativo ── */
.compare { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: #fff; }
.compare .row { display: grid; grid-template-columns: 1.5fr 1fr 1fr; }
.compare .row > div { padding: 14px 18px; border-bottom: 1px solid var(--line); font-size: 14px; }
.compare .row:last-child > div { border-bottom: 0; }
.compare .head > div { background: var(--navy); color: #fff; font-family: 'Archivo'; font-weight: 800; font-size: 12.5px; text-transform: uppercase; letter-spacing: .05em; }
.compare .head .ok { background: var(--red); }
.compare .yes { color: #0a7a50; font-weight: 700; }
.compare .no  { color: var(--muted); }

/* ── Norma NBR ── */
.cat-box { border: 1.5px solid var(--line); border-radius: var(--r); padding: 20px 24px; background: #fff; }
.cat-box .row { padding: 10px 0; border-bottom: 1px dashed var(--line); font-size: 14px; color: var(--mid); }
.cat-box .row:last-child { border-bottom: 0; }
.cat-box .row b { color: var(--navy); }
.mat-box { background: var(--navy); color: var(--muted); border-radius: var(--r); padding: 20px 24px; font-size: 14px; margin-top: 16px; }
.mat-box b { color: #fff; }
.mat-box h4 { font-family: 'Space Mono'; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 8px; }

/* ── FAQ ── */
.faq { max-width: 820px; margin: 0 auto; }
.q { border: 1px solid var(--line); border-radius: 12px; margin-bottom: 10px; overflow: hidden; background: #fff; }
.q button {
  width: 100%; text-align: left; padding: 19px 22px; background: none; border: 0;
  color: var(--navy); font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 16.5px;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.q .a { max-height: 0; overflow: hidden; transition: max-height .35s; color: var(--mid); }
.q .a p { padding: 0 22px 20px; font-size: 15px; }
.q.open .a { max-height: 280px; }
.q .chev { transition: .3s; color: var(--red); flex: 0 0 auto; }
.q.open .chev { transform: rotate(180deg); }

/* ── Formulário ── */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 36px; box-shadow: 0 24px 56px -32px rgba(10,32,80,.28); }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: 'Space Mono', monospace; font-size: 12px; letter-spacing: .04em; font-weight: 700; color: var(--navy); margin-bottom: 7px; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: 9px;
  border: 1.5px solid var(--line); background: var(--off);
  color: var(--ink); font-family: 'Sora', sans-serif; font-size: 15px; transition: .18s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--navy); background: #fff;
  box-shadow: 0 0 0 3px rgba(10,32,80,.1);
}
.field.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media(max-width:520px) { .field.row2 { grid-template-columns: 1fr; } }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--mid); margin: 8px 0 14px; }
.consent input { margin-top: 3px; accent-color: var(--red); }
.form-card .btn { width: 100%; justify-content: center; }
.form-success { display: none; padding: 16px; border-radius: 10px; background: #e5f7ed; color: #0b6637; font-size: 14.5px; text-align: center; margin-top: 12px; font-weight: 600; }
.form-success.show { display: block; }
.input--hidden { position: absolute; left: -9999px; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(110deg, var(--navy-l), var(--navy-d));
  border-radius: 16px; padding: 52px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
  background-size: 46px 46px;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; font-size: clamp(24px,3.5vw,36px); max-width: 560px; }
.cta-banner p  { color: #a8bedc; margin-top: 8px; max-width: 520px; }

/* ── Timeline ── */
.timeline { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: #fff; }
.timeline .t { padding: 28px 24px; border-right: 1px solid var(--line); }
.timeline .t:last-child { border-right: 0; }
.timeline .yr { font-family: 'Space Mono', monospace; color: var(--red); font-weight: 700; font-size: 13px; margin-bottom: 10px; }
.timeline .t h4 { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 16px; margin-bottom: 5px; }
.timeline .t p  { color: var(--mid); font-size: 13.5px; }
@media(max-width:860px) { .timeline { grid-template-columns: 1fr 1fr; } .timeline .t { border-bottom: 1px solid var(--line); } .timeline .t:nth-child(2n) { border-right: 0; } }
@media(max-width:500px)  { .timeline { grid-template-columns: 1fr; } .timeline .t { border-right: 0; } }

/* ── Footer ── */
footer { background: var(--navy-d); color: var(--muted); padding: 64px 0 28px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 40px; }
@media(max-width:860px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:500px)  { .foot-grid { grid-template-columns: 1fr; } }
footer h5 { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
footer a  { color: var(--muted); font-size: 14px; transition: .15s; }
footer a:hover { color: #fff; }
.foot-logo { background: #fff; border-radius: 10px; padding: 12px 16px; display: inline-block; margin-bottom: 18px; }
.foot-logo img { height: 38px; }
.foot-about p { color: var(--muted); font-size: 14px; margin-bottom: 20px; max-width: 290px; line-height: 1.7; }
.foot-bottom {
  border-top: 1px solid var(--line-d); margin-top: 48px; padding-top: 22px;
  display: flex; justify-content: space-between; gap: 14px;
  flex-wrap: wrap; font-size: 13px;
}
.foot-bottom a { color: var(--muted); }
.foot-bottom a:hover { color: #fff; }

/* ── WhatsApp ── */
.wpp {
  position: fixed; right: 22px; bottom: 22px; z-index: 50;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; display: grid; place-items: center;
  box-shadow: 0 10px 28px -8px rgba(37,211,102,.55); transition: .22s;
}
.wpp:hover { transform: scale(1.08); }

/* ── Cookie banner (LGPD) ── */
.cookie-bar {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
  background: var(--navy-d); border: 1px solid var(--line-d); border-radius: 14px;
  padding: 18px 24px; display: flex; align-items: center; gap: 20px;
  justify-content: space-between; flex-wrap: wrap;
  box-shadow: 0 20px 50px -16px rgba(0,0,0,.6);
}
.cookie-txt { color: #c5d8ef; font-size: 14px; max-width: 760px; }
.cookie-txt a { color: #ff8a85; }
.cookie-act { display: flex; gap: 10px; }
.cookie-bar button {
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 14px;
  padding: 10px 20px; border-radius: 8px; cursor: pointer; border: 1.5px solid transparent;
}
.ck-rej { background: transparent; color: #c5d8ef; border-color: var(--line-d); }
.ck-acc { background: var(--red); color: #fff; border-color: var(--red); }

/* ── Páginas legais ── */
.legal { max-width: 860px; margin: 0 auto; padding: 64px 0; }
.legal h1 { font-size: clamp(28px, 5vw, 42px); margin-bottom: 6px; }
.legal .upd { font-family: 'Space Mono', monospace; font-size: 12px; color: var(--mid); margin-bottom: 32px; display: block; }
.legal h2 { font-size: 22px; margin: 36px 0 12px; }
.legal p, .legal li { color: #3a4a60; font-size: 15.5px; margin-bottom: 10px; line-height: 1.7; }
.legal ul { padding-left: 22px; }

/* ── Status pages (404, obrigado) ── */
.status-page { min-height: 62vh; display: grid; place-items: center; text-align: center; padding: 80px 24px; }
.status-page h1 { font-size: clamp(44px, 9vw, 80px); color: var(--red); }
.status-page p  { font-size: 18px; color: var(--mid); margin: 14px 0 28px; max-width: 480px; }

/* ── Chip ── */
.chip {
  font-family: 'Space Mono', monospace; font-size: 12px;
  color: var(--navy); background: var(--off); border: 1px solid var(--line);
  padding: 6px 13px; border-radius: 22px; display: inline-flex; align-items: center; gap: 6px;
}
.chips { display: flex; flex-wrap: wrap; gap: 10px; }

/* ── Mini nav (páginas internas) ── */
.mini-nav { height: 72px; display: flex; align-items: center; justify-content: space-between; }
.mini-nav img { height: 40px; }

/* ── Reveal animation ── */
.rev { opacity: 0; transform: translateY(26px); transition: .65s cubic-bezier(.16,1,.3,1); }
.rev.in { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }
