/* ===== BUTTONS ===== */

.btn-desktop-only {
  display: none;
}

@media (min-width: 1024px) {
  .btn-desktop-only {
    display: flex;
  }
}

/* ===== CTA FIXED ===== */

.cta-inscripcion-fixed {
  position: fixed;
  z-index: 9999;
  background: var(--color-accent);
  color: var(--cta-text);
  font-weight: 800;
  box-shadow: var(--cta-shadow);
}

.cta-inscripcion-fixed:hover {
  background: var(--color-accent-700);
}

/* ===== TIMELINE ITEMS ===== */

.timeline-item {
  background: #fff;
  padding: 1.2rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.timeline-item:hover {
  transform: translateY(-5px);
}

/* ===== FOOTER COMPONENTS ===== */

.site-footer .footer-logo img {
  height: 150px;
  width: auto;
}

.site-footer .footer-email i {
  color: var(--color-accent);
}

.site-footer .footer-mail:hover {
  color: var(--color-accent);
}

/* ===== RESPONSIVE COMPONENT FIXES ===== */

@media (max-width: 768px) {
  .main-navbar .menu,
  .main-navbar .btn-desktop-only {
    display: none !important;
  }

  .sponsor-card {
    width: 140px;
    height: 140px;
  }
}
