/* Banner horizontal refinado */
.banner {

  background-image: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px,
    transparent 20px
  );
  background-color: #1e293b;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
  padding: 5px;
  margin-top: 35px;
}

.logo-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-image: url('../img/smile.png');
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center;
  background-color: black;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  margin-top: 5px;
  margin-bottom: 5px;
}

.banner-title {
  font-size: 30px;
  font-weight: bold;
  color: #e20065;
  font-family: 'Cooper', serif;
}

.event {
  max-width: 60%;
  background: linear-gradient(to bottom right, #1E385D, #3D2322);
  margin: 40px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  display: flex;
  gap: 20px;
  align-items: center;
}

.event:hover {
  background-color: #333339;
  cursor: pointer;
}

.event img {
  width: 120px;
  height: 160px;
  border-radius: revert-layer;
  object-fit: cover;
}

.event-details {
  flex-grow: 1;
}

.event-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.event-date {
  background-color: #3a7bfd;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}

.event-time {
  color: #bbb;
  font-size: 13px;
}

.event-title {
  font-size: 1.4rem!important;
  font-weight: bold;
  color: #fff;
  margin: 10px;
  height: 60px;
}

.event-location {
  display: flex;
  align-items: center;
  background-color: #0a2a76;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: #d0d0ff;
  text-decoration: none;
  transition: background 0.3s;
  width: fit-content;
  margin-top: auto;
  opacity: 0.7;
}

.event-location:hover {
  background-color: #123a9c;
}

.event-location::before {
  content: "📍";
  margin-right: 6px;
}

.no-events {
  max-width: 700px;
  margin: 80px auto;
  text-align: center;
  padding: 40px 20px;
  background-color: #27272a;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  font-family: 'Cinzel', serif;
  font-size: 20px;
  color: #aaa;
}

.no-events p {
  font-size: 20px;
  letter-spacing: 1px;
  color: #aaa;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  align-items: center;
}

.tags {
  display: flex;
  gap: 8px;
}

.tag {
  align-items: center;
  background-color: rgba(255, 255, 255, 0.06); 
  color: #cbd5e1;
  font-size: 14px;
  border-radius: 6px;
  padding: 4px 8px;
  font-weight: 500;
  opacity: 0.5;
  align-items: center;
}

.danger-badge {
  background-color: #b91c1c;
  color: #e5e7eb;            
  padding: 4px 10px;
  font-size: 13px;
  border-radius: 9999px;
  font-weight: bold;
}

.tag .icon {
  margin-right: 6px;
}

@media (max-width: 1400px) {
  .event {
	max-width: 80%;
  }
}

@media (max-width: 600px) {
  .banner-title {
	width: 45%;
  }
  
  .event {
	flex-direction: column;
	text-align: center;
  }
  
  .event img {
	margin-top: 20px;
	margin-bottom: 15px;
	border-radius: 8px;
  }

  .event-meta {
	justify-content: center;
  }
  
  .event-location {
	justify-content: center;
  }
  
  .event-tags {
	margin-bottom: 20px;
	margin-left: 15px;
	margin-right: 15px;
	flex-direction: column;
  }
  
  .tags {
	flex-direction: column;
  }
  
  .no-events {
    max-width: 80%;
  }
}