/* ============================================
   ANÁLISE DE RÓTULO - WD-40 | Tema Laboratório
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&family=Space+Grotesk:wght@400;500;700&display=swap');

:root {
  --bg:        #05080f;
  --bg2:       #080d1a;
  --surface:   rgba(0, 180, 220, 0.05);
  --border:    rgba(0, 212, 232, 0.18);
  --cyan:      #00d4e8;
  --cyan-dim:  rgba(0, 212, 232, 0.15);
  --yellow:    #ffd000;
  --red:       #e63946;
  --red-dim:   rgba(230, 57, 70, 0.15);
  --orange:    #ff8c42;
  --orange-dim:rgba(255,140,66,0.15);
  --green:     #2dc653;
  --text:      #c8d8ea;
  --muted:     #5a7898;
  --heading:   #eaf2ff;
  --mono:      'Space Mono', monospace;
  --sans:      'Inter', sans-serif;
  --grotesk:   'Space Grotesk', sans-serif;
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--cyan-dim); border-radius: 3px; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(5, 8, 15, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--heading);
  font-family: var(--grotesk); font-weight: 700; font-size: 1rem;
}
.nav-brand .hex { color: var(--cyan); font-size: 1.3rem; }
.nav-links {
  display: flex; gap: 2rem; list-style: none;
}
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 0.875rem; font-weight: 500; letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cyan); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  padding: 100px 2rem 60px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(0,212,232,0.07) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(123,47,255,0.06) 0%, transparent 45%),
    linear-gradient(rgba(0,212,232,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,232,0.04) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cyan-dim); border: 1px solid var(--border);
  border-radius: 100px; padding: 6px 16px;
  font-size: 0.78rem; font-family: var(--mono); color: var(--cyan);
  margin-bottom: 1.5rem;
}
.hero-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.hero-title {
  font-family: var(--grotesk); font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700; color: var(--heading); line-height: 1.05;
  margin-bottom: 0.3rem;
}
.hero-title span {
  display: block; font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--cyan); font-weight: 500; letter-spacing: 0.05em;
  margin-top: 0.4rem;
}
.hero-desc {
  color: var(--muted); font-size: 1rem; max-width: 480px;
  margin: 1.2rem 0 1.8rem;
}
.hero-chips {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 2rem;
}
.chip {
  padding: 6px 14px; border-radius: 6px;
  font-size: 0.78rem; font-family: var(--mono); font-weight: 700;
  border: 1px solid;
}
.chip-red  { color: var(--red);    border-color: var(--red);    background: var(--red-dim); }
.chip-ora  { color: var(--orange); border-color: var(--orange); background: var(--orange-dim); }

.hero-meta {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
  font-family: var(--mono); font-size: 0.78rem; color: var(--muted);
}
.hero-meta span { display: flex; align-items: center; gap: 8px; }
.hero-meta span::before { content: '//'; color: var(--cyan); opacity: 0.5; }

/* Product visual */
.hero-visual { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.product-frame {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  padding: 2rem;
  overflow: hidden;
  width: 100%;
  max-width: 360px;
}
.product-frame::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  animation: scan 3s linear infinite;
}
@keyframes scan {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(400px); opacity: 0; }
}
.product-img {
  width: 100%; border-radius: 12px;
  display: block;
}
.product-frame .img-fallback {
  display: none; width: 100%; aspect-ratio: 3/4;
  background: rgba(0,212,232,0.05); border-radius: 12px;
  border: 2px dashed var(--border);
  align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
  color: var(--muted); font-size: 0.8rem; text-align: center;
}
.product-img:not([src]), .product-img[src="images/produto.jpg"]:not([complete]) {
  display: none;
}

.hero-stats {
  display: flex; gap: 1.5rem;
}
.stat {
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  padding: 0.8rem 1.2rem;
}
.stat-n {
  display: block; font-family: var(--grotesk); font-size: 1.8rem;
  font-weight: 700; color: var(--cyan); line-height: 1;
}
.stat-l {
  display: block; font-size: 0.72rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px;
}

/* ---- SECTIONS ---- */
.section { padding: 90px 2rem; }
.section-alt { background: var(--bg2); }

.container { max-width: 1100px; margin: 0 auto; }

.sec-header {
  display: flex; gap: 1.2rem; align-items: flex-start;
  margin-bottom: 3rem;
}
.sec-num {
  position: relative;
  width: 52px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-family: var(--mono);
  font-weight: 900;
  font-size: 1.3rem;
  background: var(--cyan);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  flex-shrink: 0;
  margin-right: 0.5rem;
  transition: all 0.3s ease;
}

.sec-num::before {
  content: "";
  position: absolute;
  inset: 1.5px;
  background: var(--bg);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: -1;
  transition: all 0.3s ease;
}

/* Garante que o fundo do hexágono combine com a cor da secção */
.section-alt .sec-num::before {
  background: var(--bg2);
}

/* Efeito de Hover */
.sec-header:hover .sec-num {
  transform: scale(1.08); /* Aumentei um pouco mais para dar feedback */
  color: #ffffff; /* Texto branco no hover */
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.sec-header:hover .sec-num::before {
  opacity: 1;
  background: var(--cyan); /* Fundo sólido ciano no hover */
}

.sec-header:hover .sec-num {
  box-shadow: 0 0 20px rgba(0, 212, 232, 0.3);
}
.sec-title {
  font-family: var(--grotesk); font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; color: var(--heading); margin-bottom: 0.3rem;
}
.sec-sub { color: var(--muted); font-size: 0.9rem; }

/* ---- CARDS (shared) ---- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem;
}
.card-title {
  font-family: var(--grotesk); font-size: 1rem; font-weight: 600;
  color: var(--heading); margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 8px;
}
.card-title::before {
  content: ''; width: 3px; height: 16px;
  background: var(--cyan); border-radius: 2px;
}

/* ---- SECTION 01: PRODUTO ---- */
.product-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.span-full { grid-column: 1 / -1; }

.data-table { width: 100%; border-collapse: collapse; }
.data-table tr { border-bottom: 1px solid rgba(0,212,232,0.08); }
.data-table tr:last-child { border-bottom: none; }
.data-table td { padding: 10px 4px; font-size: 0.875rem; }
.dt-key { color: var(--muted); width: 45%; }
.dt-val { color: var(--text); font-weight: 500; }
.dt-val.mono { font-family: var(--mono); font-size: 0.8rem; color: var(--cyan); }

.comp-list { display: flex; flex-direction: column; gap: 1rem; }
.comp-item { display: flex; gap: 12px; align-items: flex-start; }
.comp-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--c); margin-top: 5px; flex-shrink: 0;
}
.comp-name { display: block; font-size: 0.875rem; font-weight: 600; color: var(--heading); }
.comp-detail { display: block; font-size: 0.78rem; color: var(--muted); margin-top: 2px; }

.uses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.use-item {
  display: flex; flex-direction: column; gap: 4px;
  background: rgba(0,212,232,0.04); border: 1px solid var(--border);
  border-radius: 12px; padding: 1rem;
}
.use-icon {
  width: 28px;
  height: 28px;
  color: var(--cyan);
  margin-bottom: 0.8rem;
  display: block;
  opacity: 0.9;
}
.use-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 2;
  stroke: currentColor;
  fill: none;
}
.use-label { font-size: 0.875rem; font-weight: 600; color: var(--heading); }
.use-desc { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }

/* ---- SECTION 02: RÓTULO ---- */
.rotulo-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start;
}
.label-img-wrap {
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border);
}
.label-img { width: 100%; display: block; border-radius: 12px; }
.img-caption {
  font-size: 0.75rem; color: var(--muted); text-align: center;
  margin-top: 8px; font-style: italic;
}

.check-list { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.check-item {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.875rem;
}
.check-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(45, 198, 83, 0.15); border: 1px solid var(--green);
  color: var(--green); font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.check-name { font-weight: 600; color: var(--heading); display: block; }
.check-info { font-size: 0.75rem; color: var(--muted); font-family: var(--mono); }

.label-verdict {
  display: flex; gap: 10px; align-items: center;
  background: rgba(45,198,83,0.08); border: 1px solid rgba(45,198,83,0.3);
  border-radius: 10px; padding: 12px 16px;
  font-size: 0.85rem; color: var(--green);
}

/* ---- SECTION 03: PICTOGRAMAS ---- */
.picto-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
.picto-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface);
  transition: transform 0.3s, box-shadow 0.3s;
}
.picto-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.picto-card-danger { border-color: rgba(230,57,70,0.3); }
.picto-card-warn   { border-color: rgba(255,140,66,0.3); }

.picto-card-header {
  padding: 2rem;
  display: flex; gap: 1.5rem; align-items: flex-start;
  border-bottom: 1px solid var(--border);
}
/* GHS Diamond (CSS) */
.ghs-wrap {
  position: relative; width: 100px; height: 100px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.ghs-diamond {
  width: 80px; height: 80px;
  background: white;
  border: 5px solid #c1121f;
  transform: rotate(45deg);
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
}
.ghs-icon {
  transform: rotate(-45deg);
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
}
.ghs-icon svg { width: 100%; height: 100%; }

.picto-code {
  font-family: var(--mono); font-size: 0.72rem;
  color: var(--muted); display: block; margin-bottom: 4px;
}
.picto-name {
  font-family: var(--grotesk); font-size: 1.2rem;
  font-weight: 700; color: var(--heading); margin-bottom: 4px;
}
.picto-word {
  font-size: 0.78rem; padding: 3px 10px; border-radius: 4px;
  font-weight: 700; font-family: var(--mono);
}
.picto-word-danger { background: var(--red-dim); color: var(--red); border: 1px solid var(--red); }
.picto-word-warn   { background: var(--orange-dim); color: var(--orange); border: 1px solid var(--orange); }

.picto-card-body { padding: 1.8rem; }

.picto-category {
  background: rgba(0,212,232,0.06); border-radius: 8px;
  padding: 10px 14px; margin-bottom: 1.2rem;
  font-size: 0.8rem;
}
.cat-label { color: var(--muted); display: block; font-size: 0.72rem; margin-bottom: 2px; }
.cat-value { color: var(--heading); font-weight: 600; }

.ph-label {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted); margin-bottom: 8px; display: block;
}
.phrase-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 8px 0; border-bottom: 1px solid rgba(0,212,232,0.06);
  font-size: 0.875rem;
}
.phrase-item:last-child { border-bottom: none; }
.phrase-code {
  font-family: var(--mono); font-size: 0.72rem; color: var(--cyan);
  background: var(--cyan-dim); border-radius: 4px;
  padding: 2px 8px; flex-shrink: 0; margin-top: 2px;
}

.picto-explanation { margin: 1.2rem 0; }
.picto-explanation h4 {
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--cyan); margin-bottom: 0.6rem; font-family: var(--mono);
}
.picto-explanation p { font-size: 0.875rem; color: var(--text); line-height: 1.7; margin-bottom: 0.6rem; }

.danger-bar-wrap { margin-top: 1rem; }
.danger-bar-wrap .db-label { font-size: 0.72rem; color: var(--muted); margin-bottom: 6px; display: block; }
.danger-bar {
  height: 6px; border-radius: 3px; background: rgba(255,255,255,0.05);
  overflow: hidden; margin-bottom: 4px;
}
.danger-bar-fill {
  height: 100%; border-radius: 3px;
  width: var(--w); transition: width 1s ease;
}
.fill-red    { background: linear-gradient(90deg, var(--red), #ff6b6b); }
.fill-orange { background: linear-gradient(90deg, var(--orange), #ffb347); }
.db-value { font-size: 0.72rem; color: var(--muted); font-family: var(--mono); }

/* ---- SECTION 04: FRASES H/P ---- */
.frases-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
.frases-card {
  border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  background: var(--surface);
}
.frases-header {
  padding: 1rem 1.5rem;
  display: flex; gap: 12px; align-items: center;
  border-bottom: 1px solid var(--border);
}
.frases-badge {
  width: 32px; height: 32px; border-radius: 8px;
  font-weight: 700; font-family: var(--mono); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.badge-h { background: var(--red-dim); color: var(--red); border: 1px solid var(--red); }
.badge-p { background: var(--cyan-dim); color: var(--cyan); border: 1px solid var(--cyan); }
.frases-header h3 {
  font-family: var(--grotesk); font-size: 1rem; font-weight: 600; color: var(--heading); flex: 1;
}
.frases-count { font-size: 0.75rem; color: var(--muted); font-family: var(--mono); }

.frases-table { width: 100%; border-collapse: collapse; }
.frases-table th {
  padding: 10px 16px; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted); text-align: left;
  background: rgba(0,0,0,0.2);
  border-bottom: 1px solid var(--border);
}
.frases-table td { padding: 10px 16px; font-size: 0.85rem; border-bottom: 1px solid rgba(0,212,232,0.05); }
.frases-table tr:last-child td { border-bottom: none; }
.frases-table tr:hover td { background: rgba(0,212,232,0.03); }
.code-td {
  font-family: var(--mono); font-size: 0.75rem;
  color: var(--cyan); width: 80px;
}
.tag-ghs {
  font-size: 0.7rem; border-radius: 4px;
  padding: 2px 8px; font-family: var(--mono);
  font-weight: 700; white-space: nowrap;
}
.tag-red  { background: var(--red-dim);    color: var(--red);    border: 1px solid var(--red); }
.tag-ora  { background: var(--orange-dim); color: var(--orange); border: 1px solid var(--orange); }

/* ---- SECTION 05: CONCLUSÃO ---- */
.conclusion-box {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
  background: var(--surface);
  position: relative; overflow: hidden;
}
.conclusion-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}
.conclusion-box p {
  font-size: 0.95rem; line-height: 1.85; color: var(--text);
  margin-bottom: 1rem;
}
.conclusion-box p:last-child { margin-bottom: 0; }
.conclusion-highlight {
  color: var(--cyan); font-weight: 600;
}

/* ---- FOOTER ---- */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  background: var(--bg2);
}
.footer-text {
  font-family: var(--mono); font-size: 0.78rem; color: var(--muted);
  display: flex; gap: 8px; align-items: center; justify-content: center;
  flex-wrap: wrap;
}
.footer-sep { color: var(--cyan); opacity: 0.4; }
.footer-placeholder {
  color: var(--text); background: rgba(255,255,255,0.06);
  padding: 2px 10px; border-radius: 4px;
  border: 1px dashed rgba(255,255,255,0.15);
}

/* ---- IMAGE MODAL (ZOOM) ---- */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(5, 8, 15, 0.95);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow: auto;
}
.modal.active {
  display: flex;
  opacity: 1;
  align-items: center;
  justify-content: center;
}
.modal-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}
.modal-content img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 0 50px rgba(0,212,232,0.2);
  cursor: zoom-in;
  transition: transform 0.3s ease, cursor 0.2s;
  user-select: none;
}
.modal-content img.zoomed {
  transform: scale(1.6);
  cursor: zoom-out;
}
.close-modal {
  position: absolute;
  top: 30px;
  right: 40px;
  color: var(--cyan);
  font-size: 40px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, color 0.2s;
  line-height: 1;
  z-index: 2001;
}
.close-modal:hover {
  transform: scale(1.1);
  color: #fff;
}

.label-img, .product-img {
  cursor: zoom-in;
  transition: transform 0.4s ease, filter 0.3s;
}
.label-img:hover, .product-img:hover {
  filter: brightness(1.1) contrast(1.1);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero-inner      { grid-template-columns: 1fr; }
  .hero-visual     { margin-top: 2rem; }
  .product-grid    { grid-template-columns: 1fr; }
  .rotulo-grid     { grid-template-columns: 1fr; }
  .picto-grid      { grid-template-columns: 1fr; }
  .frases-grid     { grid-template-columns: 1fr; }
  .nav-links       { display: none; }
  .conclusion-box  { padding: 2rem 1.5rem; }
}

/* ---- SECTION 06: REGRAS DE SEGURANÇA (VERTICAL) ---- */
.rules-layout-vertical {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.rules-vertical-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.rule-item-v {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.2rem;
  background: rgba(0, 212, 232, 0.03);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: transform 0.2s;
}
.rule-item-v:hover {
  transform: translateX(8px);
  background: rgba(0, 212, 232, 0.06);
}
.rule-n {
  font-family: var(--mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cyan);
  background: var(--cyan-dim);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.rule-item-v h4 {
  color: var(--heading);
  font-size: 1rem;
  margin-bottom: 4px;
  font-family: var(--grotesk);
}
.rule-item-v p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

@media (min-width: 992px) {
  .rules-layout-vertical {
    display: grid;
    grid-template-columns: 1fr 500px;
    align-items: start;
  }
}

/* ---- ANIMATIONS ---- */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: fade-in-up 0.6s ease both; }
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }
