/* =========================================================
   Festival de Ciberseguridad LATAM 2026
   Estilos personalizados sobre Bootstrap 5
   ========================================================= */

:root {
  --purple: #5B6CFF;            /* índigo eléctrico anchor */
  --purple-dark: #3D4EE0;
  --magenta: #FF6584;           /* coral */
  --turquoise: #5B6CFF;
  --cyan: #5B6CFF;
  --violet: #8B5CF6;
  --green-r: #10B981;
  --pink: #EC4899;
  --amber: #FFB240;
  --text-dark: #0B1020;
  --text-muted: #5B6173;
  --bg: #ffffff;
  --bg-soft: #F5F6FB;
  --border: #E4E6EF;
  --gradient-brand: linear-gradient(135deg, #07D199 0%, #00D28C 28%, #00C2FF 100%);
  --gradient-bar: linear-gradient(90deg, #00C2FF, #A77BFF, #00D28C, #FF7EB3, #FFB240);
}

/* Tipografía */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, .brand-title {
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--text-dark);
}

.text-purple { color: var(--purple) !important; }
.text-muted { color: var(--text-muted) !important; }

.text-gradient-purple {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.letter-spaced { letter-spacing: 0.18em; }
.bg-light-soft { background: var(--bg-soft); }
.py-section { padding: 6rem 0; }

/* Barra arcoíris */
.gradient-bar {
  height: 6px;
  background: var(--gradient-bar);
  width: 100%;
}

/* NAVBAR */
.navbar-fcl {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  padding: 0;
  display: flex;
  flex-direction: column;
}
.navbar-fcl > .container {
  border-bottom: 1px solid var(--border);
}
.navbar-fcl .gradient-bar {
  display: block;
}
.navbar-fcl .container { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.navbar-fcl .brand-title { font-size: 1rem; font-weight: 700; color: var(--text-dark); }
.navbar-fcl .nav-link { color: var(--text-muted); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.navbar-fcl .nav-link:hover { color: var(--purple); }

/* HERO */
.hero-section {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 5rem;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #FAFBFF;
  color: #0B1020;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;

  background:
    radial-gradient(
      950px circle at 82% 10%,
      rgba(7, 209, 153, 0.22),
      transparent 55%
    ),

    radial-gradient(
      750px circle at 12% 92%,
      rgba(0, 194, 255, 0.18),
      transparent 55%
    ),

    radial-gradient(
      650px circle at 50% 50%,
      rgba(167, 123, 255, 0.14),
      transparent 60%
    ),

    radial-gradient(
      500px circle at 88% 78%,
      rgba(255, 178, 64, 0.10),
      transparent 60%
    ),

    linear-gradient(
      180deg,
      #FFFFFF 0%,
      #F2FFFB 45%,
      #F7FAFF 100%
    );
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(11,16,32,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,16,32,0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 40%, transparent 80%);
          mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 40%, transparent 80%);
  opacity: 0.6;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: float 14s ease-in-out infinite;
}

.orb-1 { width: 380px; height: 380px; background: #5B6CFF; top: -80px; right: -60px; }
.orb-2 { width: 320px; height: 320px; background: #EC4899; bottom: -100px; left: -80px; animation-delay: -5s; }
.orb-3 { width: 260px; height: 260px; background: #8B5CF6; top: 40%; left: 55%; opacity: 0.25; animation-delay: -9s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.08); }
}
.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.4;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-section h1,
.hero-section .hero-title { color: #0B1020; }
.hero-section .lead,
.hero-section .text-muted { color: rgba(11,16,32,0.68) !important; }

.hero-title {
  font-weight: 700;
  font-size: clamp(2rem, 4.8vw, 3.85rem);
  line-height: 1.1;
  max-width: 980px;
  letter-spacing: -0.01em;
}
.badge-pill-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(11,16,32,0.12);
  background: rgba(91,108,255,0.06);
  backdrop-filter: blur(8px);
  color: #0B1020;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 24px -12px rgba(91,108,255,0.35);
}
.badge-pill-custom .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gradient-brand);
  box-shadow: 0 0 12px rgba(236,72,153,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% {opacity:1} 50% {opacity:0.4} }

.vsl-wrapper {
  position: relative;
  max-width: 880px;
  border-radius: 18px;
}
.vsl-wrapper .ratio {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(11,16,32,0.08);
  box-shadow: 0 30px 80px -20px rgba(11,16,32,0.18), inset 0 0 0 1px rgba(91,108,255,0.06);
}
.vsl-glow {
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: var(--gradient-brand);
  filter: blur(28px);
  opacity: 0.45;
  z-index: -1;
  animation: glow 6s ease-in-out infinite;
}
@keyframes glow { 0%,100% { opacity: 0.35; } 50% { opacity: 0.6; } }

/* Trust strip */
.trust-strip {
  border-top: 1px solid rgba(11,16,32,0.1);
  max-width: 880px;
  margin: 0 auto;
}
.trust-num {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700;
  background: linear-gradient(135deg, #5B6CFF, #EC4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.trust-label {
  color: rgba(11,16,32,0.68);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.25rem;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 38px;
  border: 1.5px solid rgba(11,16,32,0.3);
  border-radius: 14px;
  display: flex; justify-content: center;
  padding-top: 6px;
  z-index: 2;
}
.scroll-indicator span {
  width: 3px; height: 8px; border-radius: 2px;
  background: #5B6CFF;
  animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translateY(-4px); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateY(12px); }
}

/* Buttons over dark hero */
.hero-section .btn-outline-fcl {
  border-color: rgba(91,108,255,0.5);
  color: #5B6CFF;
}
.hero-section .btn-outline-fcl:hover {
  background: rgba(91,108,255,0.08);
  border-color: #5B6CFF;
  color: #3D4EE0;
}
.hero-section .btn-primary-fcl {
  box-shadow: 0 18px 40px -12px rgba(91,108,255,0.45);
}

/* Botones */
.btn-primary-fcl {
  background: var(--gradient-brand);
  color: #fff;
  border: none;
  font-weight: 600;
  padding: 0.9rem 1.75rem;
  border-radius: 10px;
  box-shadow: 0 10px 25px -10px rgba(91,108,255,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary-fcl:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 15px 30px -10px rgba(138, 43, 191, 0.55); }
.btn-outline-fcl {
  border: 1.5px solid rgba(7,209,153,0.4);
  color: var(--purple);
  background: transparent;
  font-weight: 500;
  padding: 0.9rem 1.75rem;
  border-radius: 10px;
}
.btn-outline-fcl:hover { background: rgba(91,108,255,0.06); color: var(--purple); }

/* Section titles */
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Métricas */
.metric-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.metric-card:hover {
  transform: translateY(-4px);
  border-color: rgba(7,209,153,0.3);
  box-shadow: 0 20px 40px -20px rgba(7,209,153,0.2);
}
.metric-icon {
  width: 56px; height: 56px;
  margin: 0 auto 1rem;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-brand);
  color: #fff;
  font-size: 1.5rem;
}
.metric-value {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 2rem; font-weight: 700;
  color: var(--text-dark);
}
.metric-label { color: var(--text-muted); font-size: 0.95rem; margin-top: 0.25rem; }

.logo-pill {
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
}

/* ROI cards */
.roi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.roi-card:hover { transform: translateY(-4px); box-shadow: 0 25px 50px -25px rgba(7,209,153,0.2); }
.roi-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(7,209,153,0.08);
  color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}
.roi-card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }
.roi-stat {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 2.25rem; font-weight: 700; line-height: 1;
  margin: 1rem 0 0.25rem;
}

/* Modalidades */
.modality-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.modality-card:hover {
  transform: translateY(-4px);
  border-color: rgba(7,209,153,0.3);
  box-shadow: 0 20px 40px -20px rgba(7,209,153,0.18);
}
.modality-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gradient-brand);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.modality-card h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }

/* Tabla comparativa */
.comparison-table {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.comparison-table thead th {
  background: var(--bg-soft);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.25rem;
}
.comparison-table tbody td { padding: 1rem 1.25rem; border-color: var(--border); }
.comparison-table .bi-check-circle { color: var(--purple); margin-right: 0.5rem; }
.comparison-table .bi-x-circle { margin-right: 0.5rem; }

/* Formulario */
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.5rem;
  box-shadow: 0 25px 60px -30px rgba(45,42,58,0.15);
}
.form-label { font-weight: 500; color: var(--text-dark); font-size: 0.9rem; }
.form-control, .form-select {
  border: 1px solid var(--border);
  padding: 0.65rem 0.9rem;
  border-radius: 10px;
}
.form-control:focus, .form-select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(7,209,153,0.12);
}

.country-pill {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}
.country-pill:hover { border-color: var(--purple); color: var(--purple); }
.country-pill.active {
  background: var(--gradient-brand);
  color: #fff;
  border-color: transparent;
}

/* Footer */
.footer-fcl {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}
.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-block;
  padding: 0.2rem 0;
}
.footer-link:hover { color: var(--purple); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 768px) {
  .py-section { padding: 4rem 0; }
  .form-card { padding: 1.5rem; }
  .hero-section { min-height: auto; padding-top: 6rem; }
}

/* ===== YouTube Facade (lazy load, ahorra ~600KB en LCP) ===== */
.yt-facade {
  cursor: pointer;
  background: #000;
  overflow: hidden;
  border-radius: 14px;
}
.yt-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
  transition: opacity 0.3s, transform 0.5s;
}
.yt-facade:hover img { opacity: 0.85; transform: scale(1.02); }
.yt-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.4));
  transition: transform 0.2s;
}
.yt-facade:hover .yt-play-btn { transform: translate(-50%, -50%) scale(1.08); }
.yt-facade iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Reduce motion (a11y + perf) */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

.sponsor-card { transition: all .3s ease; }
.sponsor-card:hover { transform: translateY(-4px); box-shadow: 0 10px 25px rgba(124,58,237,.15); border-color: rgba(124,58,237,.4) !important; }

/* CARTELERA */
.accordion-fcl .accordion-item {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(7,209,153,.08);
  backdrop-filter: blur(10px);
}

.accordion-fcl .accordion-button {
  background: #fff;
  color: var(--text-dark);
  padding: 1.4rem 1.6rem;
  box-shadow: none;
}

.accordion-fcl .accordion-button:not(.collapsed) {
  background:
    linear-gradient(
      135deg,
      rgba(7,209,153,.08),
      rgba(0,194,255,.08)
    );

  color: var(--text-dark);
}

.accordion-fcl .accordion-button:focus {
  box-shadow:
    0 0 0 4px rgba(7,209,153,.12);
}

.accordion-fcl .accordion-button::after {
  filter: hue-rotate(140deg);
}

.accordion-fcl iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

.accordion-fcl .form-card {
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.accordion-fcl .form-card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 20px 40px -24px rgba(7,209,153,.28);
}

/* Categorías badge */
  .recurso-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 99px;
    margin-bottom: 0.5rem;
    background: rgba(138,43,191,.1);
    color: #8a2bbf;
    letter-spacing: .04em;
  }

  /* Tarjeta de recurso */
  .recurso-card {
    background: linear-gradient(135deg,rgba(138,43,191,.04) 0%,rgba(201,61,255,.04) 100%);
    border-radius: 1rem;
    padding: 1.5rem 1.25rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow .2s, transform .2s;
    border: 1px solid rgba(138,43,191,.08);
  }
  .recurso-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(138,43,191,.14);
  }
  .recurso-img-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #8a2bbf;
    flex-shrink: 0;
    margin-bottom: 1rem;
  }
  .recurso-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .recurso-title {
    font-size: .88rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: .5rem;
    flex: 1;
  }
  .recurso-fuente {
    font-size: .75rem;
    color: #888;
    margin-bottom: .75rem;
  }

  /* Skeleton */
  .recursos-skeleton-card { opacity: .55; }
  .skeleton-circle {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(90deg,#e0e0e0 25%,#f0f0f0 50%,#e0e0e0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
  }
  .skeleton-line {
    height: 12px; border-radius: 6px;
    background: linear-gradient(90deg,#e0e0e0 25%,#f0f0f0 50%,#e0e0e0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
  }
  .skeleton-btn {
    width: 80%; height: 36px; border-radius: 6px;
    background: linear-gradient(90deg,#e0e0e0 25%,#f0f0f0 50%,#e0e0e0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
  }
  @keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
  }

  /* Paginación */
  .recursos-page-btn {
    min-width: 38px; height: 38px;
    border-radius: 8px;
    border: 1px solid rgba(138,43,191,.25);
    background: transparent;
    color: #8a2bbf;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s, color .15s;
  }
  .recursos-page-btn:hover,
  .recursos-page-btn.active {
    background: #8a2bbf;
    color: #fff;
    border-color: #8a2bbf;
  }
  .recursos-page-btn:disabled {
    opacity: .35;
    cursor: default;
  }

  /* Animación de entrada de tarjetas */
  @keyframes recursoFadeIn {
    from { opacity:0; transform: translateY(12px); }
    to   { opacity:1; transform: translateY(0); }
  }
  .recurso-appear { animation: recursoFadeIn .35s ease both; }

  /* Skeleton reutilizado (si no lo tienes ya de recursos) */
  .skeleton-line {
    background: linear-gradient(90deg,#e0e0e0 25%,#f0f0f0 50%,#e0e0e0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
    border-radius: 6px;
    display: block;
  }
  @keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
  }

  /* Tarjeta de video */
  .cartelera-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, transform .2s;
    border: 1px solid rgba(138,43,191,.08);
  }
  .cartelera-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(138,43,191,.12);
  }

  /* Tarjeta "sin video" */
  .cartelera-card-novideo {
    background: linear-gradient(135deg,rgba(138,43,191,.04),rgba(201,61,255,.04));
    border-radius: 1rem;
    padding: 1.25rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px dashed rgba(138,43,191,.2);
    opacity: .82;
  }
  .cartelera-card-novideo .novideo-icon {
    font-size: 1.8rem;
    color: rgba(138,43,191,.35);
    margin-bottom: .5rem;
  }

  /* Badge ponente */
  .cartelera-ponente {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .75rem;
    font-weight: 600;
    color: #8a2bbf;
    background: rgba(138,43,191,.08);
    border-radius: 99px;
    padding: 2px 10px;
    margin-bottom: .6rem;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* Año badge en acordeón */
  .cartelera-year-badge {
    font-size: .72rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 99px;
    background: rgba(138,43,191,.1);
    color: #8a2bbf;
    margin-left: .6rem;
    vertical-align: middle;
  }

  /* Contador de sesiones */
  .cartelera-stats {
    font-size: .78rem;
    color: #888;
    margin-left: auto;
    white-space: nowrap;
    padding-left: .5rem;
  }

  /* Animación de entrada */
  @keyframes carteleraFade {
    from { opacity:0; transform:translateY(10px); }
    to   { opacity:1; transform:translateY(0); }
  }
  .cartelera-appear { animation: carteleraFade .3s ease both; }

  /* Lazy iframe: muestra placeholder hasta que aparece en viewport */
  .iframe-placeholder {
    background: linear-gradient(135deg,#1a1a2e,#16213e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.4);
    font-size: 2rem;
    cursor: pointer;
    border-radius: .75rem;
    position: absolute;
    inset: 0;
    transition: background .2s;
  }
  .iframe-placeholder:hover { background: linear-gradient(135deg,#16213e,#0f3460); color:rgba(255,255,255,.7); }
  .iframe-placeholder span { font-size:.75rem; margin-top:.4rem; display:block; text-align:center; }

  /* Accordion spacing */
  #cartelera-accordion .accordion-item + .accordion-item { margin-top: .75rem; }
