/* ─────────────────────────────────────────────
   VB Seguros — Vivian Barreto
   Main stylesheet
   ───────────────────────────────────────────── */

:root {
  /* Brand — principal + secundario */
  --primary:        #0842ab;
  --primary-dark:   #052d7a;
  --secondary:      #ffbd59;
  --secondary-dark: #e8a23c;

  --dark:      #111111;
  --dark2:     #1a1a1a;
  --gray-bg:   #f5f7fb;
  --gray-text: #666666;
  --border:    #e2e8f0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--dark);
  background: #fff;
  line-height: 1.5;
}

/* ─── NAVIGATION ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 66px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img { height: 36px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  text-decoration: none;
  color: #555;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--primary); background: rgba(8, 66, 171, 0.06); }

.nav-links a.nav-active {
  background: var(--primary);
  color: #fff;
}

/* ─── HAMBURGER ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

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

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 66px; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  z-index: 199;
  flex-direction: column;
  gap: 4px;
}

.nav-drawer.open { display: flex; }

.nav-drawer a {
  text-decoration: none;
  color: #444;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: 10px;
  transition: background 0.15s;
}

.nav-drawer a:hover { background: var(--gray-bg); color: var(--dark); }

.nav-drawer .drawer-cta {
  margin-top: 8px;
  background: var(--secondary);
  color: var(--dark) !important;
  font-weight: 700;
  text-align: center;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 12px 24px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-lime  { background: var(--secondary); color: var(--dark); }
.btn-lime:hover  { background: var(--secondary-dark); transform: translateY(-1px); }

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.22); }

.btn-dark  { background: var(--dark); color: #fff; }
.btn-dark:hover  { background: #333; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); background: var(--primary); color: #fff; }

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

.btn-nav {
  font-size: 0.85rem;
  padding: 8px 20px;
  flex-shrink: 0;
}

/* ─── HERO ─── */
.hero {
  height: 100vh;
  min-height: 640px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 66px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/vivian barreto.png');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 66, 171, 0.88) 0%,
    rgba(8, 66, 171, 0.5) 50%,
    rgba(8, 8, 8, 0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2.5rem 120px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 580px;
  margin-bottom: 1.4rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 1.6rem;
}

.hero-bullets {
  list-style: none;
  margin-bottom: 2.2rem;
}

.hero-bullets li {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-bullets li i {
  color: var(--secondary);
  flex-shrink: 0;
  width: 16px; height: 16px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero pills */
.hero-pills {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
}

.hero-pills-row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hero-pill {
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.13);
  padding: 18px 24px;
}

.hero-pill:first-child { border-radius: 14px 0 0 0; }
.hero-pill:last-child  { border-radius: 0 14px 0 0; }

.pill-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 5px;
}

.pill-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

/* ─── CARD GRID ─── */
.cards-section {
  background: var(--gray-bg);
  padding: 3.5rem 2.5rem;
}

.cards-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 1.6rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-lime-bg {
  background: var(--primary);
}

.card-lime-bg .card-label { color: rgba(255,255,255,0.55); }

.card-lime-bg h3 { color: #fff; }

.card-lime-bg .card-arrow {
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}

.card-lime-bg .card-arrow:hover {
  background: var(--secondary);
  color: var(--dark);
  border-color: var(--secondary);
}

.card-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 10px;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 1.2rem;
  max-width: 88%;
}

.card-arrow {
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.14);
  display: flex; align-items: center; justify-content: center;
  color: #555;
  text-decoration: none;
  transition: all 0.2s;
}

.card-arrow i { width: 14px; height: 14px; }
.card-arrow:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

.card-img {
  width: 100%;
  height: 155px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: auto;
}

/* ─── GENERIC SECTIONS ─── */
.section    { padding: 5.5rem 2.5rem; }
.section-sm { padding: 3.5rem 2.5rem; }

.inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 18px;
  display: block;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 1.2rem;
}

.section-body {
  font-size: 1.02rem;
  line-height: 1.72;
  color: var(--gray-text);
  max-width: 600px;
}

/* ─── TWO-COLUMN ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.col-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
}

/* ─── FEATURE LIST ─── */
.feat-list {
  list-style: none;
  margin: 1.6rem 0 2.2rem;
}

.feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: #333;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.feat-list li:last-child { border-bottom: none; }

.feat-list li i {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
  width: 16px; height: 16px;
}

/* ─── DARK SECTION ─── */
.section-dark {
  background: linear-gradient(180deg, #0d1a2e 0%, var(--dark2) 100%);
}
.section-dark .section-label { color: rgba(255,255,255,0.35); }
.section-dark .section-title { color: #fff; }
.section-dark .section-body  { color: rgba(255,255,255,0.65); max-width: 680px; }

.questions-list { list-style: none; margin-top: 2.4rem; }

.questions-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 1.3rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.questions-list li:last-child { border-bottom: none; }

.q-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ─── CALCULATOR ─── */
.calc-bg { background: var(--gray-bg); }

.calc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.calc-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.field { margin-bottom: 1.15rem; }

.field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #888;
  margin-bottom: 6px;
}

.field input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
}

.field input:focus { border-color: var(--primary); }

.calc-result-card {
  background: linear-gradient(145deg, #0a1f45 0%, var(--dark2) 100%);
  border-radius: 20px;
  padding: 2.2rem;
  position: sticky;
  top: 80px;
  color: #fff;
}

.result-chip {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}

.result-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.4rem;
  line-height: 1.4;
}

.result-amount {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}

.result-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.8rem;
}

.calc-formula {
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.calc-formula strong {
  display: block;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.85rem;
}

.calc-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ─── TYPES GRID ─── */
.types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.type-card {
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 2rem 1.6rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.type-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 22px rgba(8, 66, 171, 0.12);
}

.type-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--primary);
}

.type-icon i { width: 22px; height: 22px; }

.type-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.type-card p  { font-size: 0.9rem; color: var(--gray-text); line-height: 1.6; }

/* ─── SOLUTIONS GRID ─── */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.8rem;
}

.sol-card {
  background: var(--gray-bg);
  border-radius: 16px;
  padding: 1.5rem;
  transition: background 0.2s;
}

.sol-card:hover { background: var(--primary); }
.sol-card:hover .sol-body { color: rgba(255,255,255,0.8); }
.sol-card:hover h4 { color: #fff; }

.sol-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.2s;
  color: var(--primary);
}

.sol-icon i { width: 20px; height: 20px; }
.sol-card:hover .sol-icon { background: var(--secondary); color: var(--primary); }

.sol-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 5px; }
.sol-body { font-size: 0.85rem; color: var(--gray-text); line-height: 1.5; transition: color 0.2s; }

/* ─── ABOUT STATS ─── */
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.2rem;
}

.about-stat {
  background: #fff;
  border-radius: 13px;
  padding: 1.1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
}

.stat-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.stat-icon i { width: 18px; height: 18px; }

.about-stat span { font-size: 0.88rem; font-weight: 600; color: var(--dark); }

/* ─── LOGO SLIDER ─── */
.slider-track-wrap {
  overflow: hidden;
  width: 100%;
  margin-top: 2.5rem;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

.slider-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: slide 28s linear infinite;
}

.slider-track:hover { animation-play-state: paused; }

@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.logo-item {
  background: var(--gray-bg);
  border-radius: 12px;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 72px;
  min-width: 120px;
  transition: background 0.2s;
}

.logo-item:hover { background: #ebebea; }

.logo-item img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.2s, opacity 0.2s;
}

.logo-item:hover img { filter: grayscale(0%); opacity: 1; }

/* ─── CTA DARK ─── */
.cta-dark {
  background: linear-gradient(180deg, #0d1a2e 0%, #0a1628 100%);
  text-align: center;
}

.cta-dark .section-label { color: rgba(255,255,255,0.35); }
.cta-dark .section-title { color: #fff; }
.cta-dark .section-body  { color: rgba(255,255,255,0.6); margin: 0 auto 2.5rem; max-width: 600px; }

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4.5rem;
  align-items: start;
}

.contact-info-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 2rem 0 1rem;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #444;
}

.contact-row a { color: inherit; text-decoration: none; }
.contact-row a:hover { color: var(--primary); }

.c-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.c-icon i { width: 16px; height: 16px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field { margin-bottom: 1.1rem; }

.form-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #888;
  margin-bottom: 6px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus { border-color: var(--primary); }

.form-help {
  font-size: 0.76rem;
  color: #aaa;
  margin-top: 10px;
  line-height: 1.5;
}

/* ─── FOOTER ─── */
footer {
  background: #0d0d0d;
  padding: 3rem 2.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand { margin-bottom: 10px; }
.footer-brand img { height: 32px; width: auto; filter: brightness(0) invert(1); }

.footer-meta {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.9;
}

.footer-contact { text-align: right; }

.footer-contact a {
  display: block;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  line-height: 1.9;
  transition: color 0.15s;
}

.footer-contact a:hover { color: var(--secondary); }

.footer-divider {
  max-width: 1200px;
  margin: 1.8rem auto 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ─── DIVIDER ─── */
hr.sec-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 2.5rem;
}

/* ─── HELPERS ─── */
.text-center { text-align: center; }
.text-center .section-body { margin: 0 auto; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nav-links, nav > .btn { display: none; }
  .nav-hamburger { display: flex; }

  .hero { min-height: 100svh; }
  .hero-content { padding: 0 1.25rem 140px; }
  .hero-pills-row { grid-template-columns: 1fr; padding: 0 1.25rem; }
  .hero-pill:first-child { border-radius: 14px 14px 0 0; }
  .hero-pill:last-child  { border-radius: 0 0 14px 14px; }
  .hero-pill { padding: 14px 18px; }

  .section    { padding: 3.5rem 1.25rem; }
  .section-sm { padding: 2.5rem 1.25rem; }
  nav { padding: 0 1.25rem; }
  .cards-section  { padding: 2.5rem 1.25rem; }
  hr.sec-divider  { margin: 0 1.25rem; }

  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col .col-img { height: 280px; order: -1; }

  .cards-grid { grid-template-columns: 1fr; }
  .card-img   { height: 200px; }

  .calc-layout     { grid-template-columns: 1fr; gap: 1.5rem; }
  .calc-result-card { position: static; }

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

  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row     { grid-template-columns: 1fr; }

  .footer-inner   { flex-direction: column; gap: 1.5rem; }
  .footer-contact { text-align: left; }
  .footer-divider { flex-direction: column; gap: 4px; }

  .cta-btns .btn  { width: 100%; max-width: 360px; justify-content: center; }
  .cta-btns       { flex-direction: column; align-items: center; }
}

@media (max-width: 500px) {
  .hero h1    { font-size: 2.1rem; }
  .section-title { font-size: 1.7rem; }
  .solutions-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .result-amount  { font-size: 2rem; }
}

/* ─── SCROLL ANIMATIONS ─── */
@media (prefers-reduced-motion: no-preference) {
  [data-anim] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  [data-anim="fade-up"]    { transform: translateY(28px); }
  [data-anim="fade-down"]  { transform: translateY(-24px); }
  [data-anim="fade-left"]  { transform: translateX(32px); }
  [data-anim="fade-right"] { transform: translateX(-32px); }
  [data-anim="scale-up"]   { transform: scale(0.94); }

  [data-anim].anim-in { opacity: 1; transform: none; }

  [data-delay="1"] { transition-delay: 0.1s; }
  [data-delay="2"] { transition-delay: 0.2s; }
  [data-delay="3"] { transition-delay: 0.3s; }
  [data-delay="4"] { transition-delay: 0.4s; }
  [data-delay="5"] { transition-delay: 0.5s; }
}
