:root {
  --color-navy: #3d2a24;
  --color-ink: #3d2a24;
  --color-muted: #735f58;
  --color-surface: #ffffff;
  --color-soft: #fff8ed;
  --color-teal: #8b4f99;
  --color-coral: #f47461;
  --color-gold: #f6c765;
  --color-cream: #fff7e8;
  --shadow-card: 0 20px 50px rgba(61, 42, 36, 0.12);
  --radius: 8px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--color-ink);
  background: var(--color-surface);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 76px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--color-teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--color-coral);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(2.45rem, 9vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--color-navy);
  font-size: clamp(2rem, 6vw, 3.15rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  color: var(--color-navy);
  font-size: 1.2rem;
  line-height: 1.2;
}

p {
  color: var(--color-muted);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(61, 42, 36, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(61, 42, 36, 0.12);
  box-shadow: 0 14px 38px rgba(61, 42, 36, 0.12);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 32px, var(--container));
  min-height: 72px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-navy);
  font-weight: 800;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  transition: transform 220ms ease;
}

.brand:hover .brand-logo {
  transform: rotate(-4deg) scale(1.04);
}

.brand-text {
  display: grid;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-text strong {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.brand-text small {
  max-width: 180px;
  color: var(--color-muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.menu-toggle {
  display: grid;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  background: var(--color-soft);
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--color-navy);
}

.nav-menu {
  position: absolute;
  top: 72px;
  right: 16px;
  left: 16px;
  display: none;
  margin: 0;
  padding: 18px;
  list-style: none;
  background: #ffffff;
  border: 1px solid rgba(61, 42, 36, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.nav-menu.is-open {
  display: grid;
}

.nav-menu a {
  position: relative;
  display: block;
  padding: 12px;
  color: var(--color-navy);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 7px;
  left: 12px;
  height: 2px;
  background: var(--color-coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav-menu a:hover {
  color: var(--color-coral);
  transform: translateY(-1px);
}

.nav-menu a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  color: #ffffff !important;
  background: var(--color-coral);
  border-radius: var(--radius);
  text-align: center;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  color: #ffffff !important;
  background: #e96250;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(61, 42, 36, 0.16);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  color: #ffffff;
  background: var(--color-coral);
  box-shadow: 0 16px 32px rgba(255, 107, 74, 0.28);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.26) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 560ms ease;
}

.btn-primary:hover::after {
  transform: translateX(120%);
}

.btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding-top: 132px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(246, 199, 101, 0.18), transparent 32%),
    linear-gradient(120deg, #3d2a24, #4a2d36, #3d2a24);
  background-size: 100% 100%, 180% 180%;
  animation: heroGradientShift 14s ease-in-out infinite;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(61, 42, 36, 0.96) 0%, rgba(61, 42, 36, 0.78) 48%, rgba(61, 42, 36, 0.22) 100%),
    url("assets/hero-protagonistas.png") center right / cover no-repeat;
  transform: scale(1.035);
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: -92px;
  width: 260px;
  height: 260px;
  background: rgba(139, 79, 153, 0.36);
  border-radius: 50%;
  filter: blur(18px);
  animation: softPulse 5s ease-in-out infinite;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
  align-items: end;
}

.hero-copy {
  max-width: 710px;
}

.hero-slogan {
  margin-bottom: 14px !important;
  color: var(--color-gold) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 5vw, 2.45rem) !important;
  font-style: italic;
  font-weight: 700;
  line-height: 1.1;
}

.hero-copy p {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.hero-bullets {
  display: grid;
  gap: 10px;
  max-width: 620px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.hero-bullets li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.hero-bullets li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--color-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(246, 199, 101, 0.16);
  transform: translateY(-50%);
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease;
}

.trust-row span:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-card {
  display: grid;
  gap: 1px;
  max-width: 820px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.metric {
  padding: 20px;
  background: rgba(255, 255, 255, 0.12);
  transition: background 180ms ease, transform 180ms ease;
}

.metric:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.metric strong {
  display: block;
  color: #ffffff;
  font-size: 1.55rem;
  line-height: 1;
}

.metric span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

/* Impact */
.impact {
  position: relative;
  z-index: 2;
  padding: 22px 0 32px;
  margin-top: 0;
}

.impact-grid {
  display: grid;
  gap: 12px;
}

.impact-item {
  padding: 22px;
  text-align: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(61, 42, 36, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.impact-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(61, 42, 36, 0.13);
}

.impact-item strong {
  display: block;
  color: var(--color-teal);
  font-size: clamp(2rem, 8vw, 3.2rem);
  line-height: 1;
}

.impact-item span:last-child {
  display: block;
  margin-top: 8px;
  color: var(--color-muted);
  font-weight: 800;
}

/* About */
.about {
  background: var(--color-soft);
}

.split-layout {
  display: grid;
  gap: 28px;
}

.rich-text p {
  font-size: 1.05rem;
}

/* Programs */
.section-heading {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.cards-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}

.program-card,
.testimonial-card,
.benefit-list article {
  padding: 26px;
  background: #ffffff;
  border: 1px solid rgba(61, 42, 36, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(61, 42, 36, 0.07);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.program-card:hover,
.testimonial-card:hover,
.benefit-list article:hover {
  border-color: rgba(244, 116, 97, 0.26);
  box-shadow: 0 18px 48px rgba(61, 42, 36, 0.12);
  transform: translateY(-6px);
}

.program-card.featured {
  color: #ffffff;
  background: var(--color-navy);
}

.program-card.featured h3,
.program-card.featured p {
  color: #ffffff;
}

.card-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  place-items: center;
  color: #ffffff;
  background: var(--color-teal);
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 220ms ease;
}

.program-card:hover .card-icon {
  transform: rotate(-3deg) scale(1.06);
}

.program-card.featured .card-icon {
  background: var(--color-coral);
}

.program-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--color-coral);
  font-weight: 800;
  transition: color 180ms ease, transform 180ms ease;
}

.program-card a:hover {
  color: var(--color-teal);
  transform: translateX(4px);
}

/* Process */
.process {
  background: #ffffff;
}

.process-grid {
  display: grid;
  gap: 18px;
}

.process-step {
  position: relative;
  padding: 28px;
  background: var(--color-soft);
  border: 1px solid rgba(61, 42, 36, 0.08);
  border-radius: var(--radius);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.process-step:hover {
  border-color: rgba(139, 79, 153, 0.24);
  box-shadow: 0 18px 48px rgba(61, 42, 36, 0.1);
  transform: translateY(-6px);
}

.process-step > span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  place-items: center;
  color: #ffffff;
  background: var(--color-teal);
  border-radius: var(--radius);
  font-weight: 800;
}

.process-step p {
  margin-bottom: 0;
}

/* Benefits */
.benefits {
  background: linear-gradient(180deg, #ffffff 0%, var(--color-soft) 100%);
}

.benefits-grid {
  display: grid;
  gap: 28px;
}

.benefit-list {
  display: grid;
  gap: 14px;
}

.benefit-list article {
  position: relative;
  padding-left: 58px;
}

.benefit-list article::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 26px;
  width: 14px;
  height: 14px;
  background: var(--color-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(247, 183, 51, 0.16);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.benefit-list article:hover::before {
  box-shadow: 0 0 0 12px rgba(247, 183, 51, 0.2);
  transform: scale(1.08);
}

/* Testimonials */
.testimonials {
  background: #ffffff;
}

.testimonial-card p {
  color: var(--color-ink);
  font-size: 1.02rem;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card em {
  display: block;
  margin: 8px 0 4px;
  color: var(--color-teal);
  font-style: normal;
  font-weight: 800;
  line-height: 1.35;
}

.testimonial-card span {
  color: var(--color-muted);
  font-size: 0.9rem;
}

/* Final CTA */
.final-cta {
  color: #ffffff;
  background: var(--color-navy);
}

.cta-panel {
  max-width: 880px;
  text-align: center;
}

.cta-panel .eyebrow {
  color: var(--color-gold);
}

.cta-panel .eyebrow::before {
  display: none;
}

.cta-panel h2,
.cta-panel p {
  color: #ffffff;
}

.cta-panel p {
  max-width: 640px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.76);
}

.cta-panel .cta-reassurance {
  margin-top: -6px;
  margin-bottom: 24px;
  color: var(--color-gold);
  font-weight: 800;
}

.cta-panel .hero-actions {
  justify-content: center;
}

/* Footer */
.site-footer {
  padding: 44px 0;
  background: #071524;
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.site-footer,
.site-footer a,
.site-footer p,
.site-footer h2 {
  color: #ffffff;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h2 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-brand .brand-text strong,
.footer-brand .brand-text small {
  color: #ffffff;
}

.footer-closing {
  max-width: 360px;
  color: var(--color-gold) !important;
  font-weight: 800;
}

.social-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 180ms ease, transform 180ms ease;
}

.social-links svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: currentColor;
  color: var(--color-coral);
  transition: color 180ms ease, transform 180ms ease;
}

.social-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.social-links a:hover svg {
  color: var(--color-gold);
  transform: scale(1.08);
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroGradientShift {
  0%,
  100% {
    background-position: center, 0% 50%;
  }
  50% {
    background-position: center, 100% 50%;
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-10px, -8px, 0);
  }
}

@keyframes softPulse {
  0%,
  100% {
    opacity: 0.65;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.08);
  }
}

/* Responsive */
@media (min-width: 720px) {
  .impact-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-card {
    grid-template-columns: repeat(3, 1fr);
  }

  .cards-grid,
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefits-grid,
  .split-layout,
  .footer-grid {
    grid-template-columns: 1fr 1.1fr;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (min-width: 940px) {
  .menu-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav-menu a {
    padding: 10px 12px;
  }

  .hero-grid {
    min-height: calc(100svh - 208px);
  }
}

@media (max-width: 520px) {
  .section {
    padding: 58px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 116px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(61, 42, 36, 0.98) 0%, rgba(61, 42, 36, 0.88) 58%, rgba(61, 42, 36, 0.52) 100%),
      url("assets/hero-protagonistas.png") center / cover no-repeat;
  }

  .btn,
  .hero-actions {
    width: 100%;
  }

  .trust-row span {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero,
  .hero-bg,
  .hero::after {
    animation: none !important;
  }
}

/* Event conversion layer */
.event-banner {
  position: relative;
  z-index: 3;
  padding: 24px 0 0;
  margin-top: 0;
}

.event-banner-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: center;
  justify-content: center;
  padding: 16px 18px;
  color: var(--color-navy);
  background: linear-gradient(135deg, #fff7e8 0%, #ffffff 100%);
  border: 1px solid rgba(246, 199, 101, 0.7);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(61, 42, 36, 0.1);
  text-align: center;
}

.event-banner-inner span {
  color: var(--color-teal);
  font-weight: 800;
}

.event-banner-inner strong {
  font-weight: 800;
}

.impact {
  padding-top: 22px;
  padding-bottom: 24px;
}

.impact-item {
  padding: 16px;
}

.impact-item strong {
  font-size: clamp(1.7rem, 6vw, 2.35rem);
}

.qr-card {
  display: grid;
  gap: 18px;
  align-items: center;
  max-width: 620px;
  margin: 30px auto 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.qr-card h3 {
  margin-bottom: 6px;
  color: #ffffff;
}

.qr-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.qr-card img {
  width: min(100%, 180px);
  aspect-ratio: 1;
  margin-inline: auto;
  object-fit: contain;
  background: #ffffff;
  border-radius: var(--radius);
}

.express-register {
  background: var(--color-soft);
}

.express-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}

.express-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid rgba(61, 42, 36, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label {
  color: var(--color-navy);
  font-size: 0.92rem;
  font-weight: 800;
}

.form-field input,
.form-field select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  color: var(--color-ink);
  background: #ffffff;
  border: 1px solid rgba(61, 42, 36, 0.16);
  border-radius: var(--radius);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--color-coral);
  box-shadow: 0 0 0 4px rgba(244, 116, 97, 0.14);
}

.express-form .btn {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 16px;
  color: #ffffff;
  background: #f24aa7;
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(242, 74, 167, 0.34);
  font-weight: 800;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(242, 74, 167, 0.42);
}

@media (min-width: 720px) {
  .qr-card {
    grid-template-columns: 1fr auto;
    text-align: left;
  }

  .express-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .express-form {
    grid-template-columns: repeat(2, 1fr);
    padding: 28px;
  }

  .express-form .btn,
  .form-note {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .event-banner {
    padding-top: 18px;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    min-height: 52px;
    padding: 0 14px;
  }
}

/* Layout fix: keep fair badge and impact metrics from overlapping */
.event-banner {
  margin-bottom: 34px;
}

.event-banner + .impact {
  padding-top: 0;
  margin-top: 0;
}

@media (max-width: 520px) {
  .event-banner {
    margin-bottom: 26px;
  }
}
