/* ============================================
   EVENTS PAGE - BANNER
   ============================================ */

.events-banner {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
}

.events-banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.events-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 37, 64, 0.92) 0%, rgba(26, 140, 62, 0.82) 100%);
  z-index: 1;
}

/* ============================================
   FEATURED EVENT
   ============================================ */

.featured-event-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 400px;
}

.featured-event-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-event-img-wrapper:hover .featured-event-img {
  transform: scale(1.05);
}

.featured-event-title {
  color: var(--dark-blue);
  font-size: 1.6rem;
  line-height: 1.4;
}

.event-meta span {
  font-size: 0.85rem;
}

.event-detail-btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-detail-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 140, 62, 0.3);
}

/* ============================================
   PRESS / BÁO CHÍ CARDS
   ============================================ */

.press-card {
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid transparent !important;
}

.press-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.1) !important;
}

.col-lg-6:nth-child(1) .press-card {
  border-left-color: #dc3545 !important;
}

.col-lg-6:nth-child(2) .press-card {
  border-left-color: #0d6efd !important;
}

.col-lg-6:nth-child(3) .press-card {
  border-left-color: #198754 !important;
}

.col-lg-6:nth-child(4) .press-card {
  border-left-color: #ffc107 !important;
}

.col-lg-6:nth-child(5) .press-card {
  border-left-color: #0dcaf0 !important;
}

.col-lg-6:nth-child(6) .press-card {
  border-left-color: #6c757d !important;
}

.press-source-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.press-source-icon i {
  font-size: 1.3rem;
}

.press-card-title {
  font-size: 1rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.press-link-btn {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.press-link-btn:hover {
  transform: translateX(5px);
}

/* ============================================
   MOU SECTION
   ============================================ */

.mou-section {
  background: linear-gradient(180deg, #f8fdf9 0%, #f0f4f8 100%);
}

.partner-badge {
  font-size: 0.8rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.partner-badge:hover {
  transform: translateY(-2px);
  background: #e9ecef !important;
}

/* ============================================
   EVENT STATS
   ============================================ */

.events-stats-section {
  background: linear-gradient(135deg, #0a2540 0%, #1a5c3e 100%);
  position: relative;
  overflow: hidden;
}

.events-stats-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

.events-stats-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.02);
}

.event-stat-item {
  position: relative;
  z-index: 2;
  padding: 1.5rem 1rem;
}

.event-stat-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.15);
  transition: transform 0.3s ease;
}

.event-stat-item:hover .event-stat-icon {
  transform: scale(1.1);
}

.event-stat-icon i {
  font-size: 1.8rem;
  color: #fff;
}

.event-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* ============================================
   EVENT GALLERY
   ============================================ */

.event-gallery-item {
  position: relative;
  height: 260px;
  overflow: hidden;
  cursor: pointer;
}

.event-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 37, 64, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.event-gallery-item:hover img {
  transform: scale(1.1);
}

.event-gallery-item:hover .event-gallery-overlay {
  opacity: 1;
}

/* ============================================
   CTA SECTION (EVENTS)
   ============================================ */

.events-cta-section {
  background: linear-gradient(135deg, #1a5c3e 0%, #0a2540 100%);
  position: relative;
  overflow: hidden;
}

.events-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -15%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.cta-social-btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
}

.cta-social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* ============================================
   RESPONSIVE (EVENTS PAGE)
   ============================================ */

@media (max-width: 991.98px) {
  .featured-event-img-wrapper {
    height: 300px;
    margin-bottom: 1rem;
  }
}

@media (max-width: 991.98px) {
  .featured-event-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 991.98px) {
  .event-stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .events-banner {
    min-height: 220px;
  }
}

@media (max-width: 767.98px) {
  .featured-event-img-wrapper {
    height: 220px;
  }
}

@media (max-width: 767.98px) {
  .featured-event-title {
    font-size: 1.15rem;
  }
}

@media (max-width: 767.98px) {
  .event-gallery-item {
    height: 180px;
  }
}

@media (max-width: 767.98px) {
  .event-stat-number {
    font-size: 1.6rem;
  }
}

@media (max-width: 767.98px) {
  .event-stat-icon {
    width: 55px;
    height: 55px;
  }
}

@media (max-width: 767.98px) {
  .event-stat-icon i {
    font-size: 1.4rem;
  }
}

@media (max-width: 767.98px) {
  .press-card-title {
    font-size: 0.9rem;
  }
}

@media (max-width: 575.98px) {
  .cta-social-btn {
    width: 100%;
  }
}

