/* ============================================
   STYLE.CSS — Ongetty (Premium Ticket Standard)
   Clean, Professional, Focus on Conversion
   ============================================ */

:root {
  --cor-fundo: #ffffff;
  --cor-card: #ffffff;
  --cor-header: #ffffff;
  --cor-texto: #1a1a1a;
  --cor-texto-sec: #666666;
  --cor-borda: #e0e0e0;
  --cor-primaria: #007bff; /* Azul profissional */
  --cor-secundaria: #ff385c; /* Cor de destaque (ex: Airbnb/Eventbrite) */
  --cor-sucesso: #28a745;
  --altura-header: 72px;
  --sombra-suave: 0 4px 12px rgba(0,0,0,0.08);
  --sombra-forte: 0 8px 24px rgba(0,0,0,0.12);
}

body {
  background-color: var(--cor-fundo);
  color: var(--cor-texto);
  font-family: 'Inter', 'Poppins', sans-serif;
  margin: 0;
  padding-top: var(--altura-header);
  -webkit-font-smoothing: antialiased;
}

/* =========================================================
   HEADER & NAVBAR
   ========================================================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--altura-header);
  background-color: var(--cor-header);
  z-index: 1000;
  border-bottom: 1px solid var(--cor-borda);
  box-shadow: var(--sombra-suave);
}

.navbar {
  height: 100%;
  padding: 0 1rem;
}

.logo-navbar {
  height: 40px;
  width: auto;
}

.nav-link {
  color: var(--cor-texto) !important;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--cor-primaria) !important;
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero-section {
  background:
    linear-gradient(135deg, rgba(0, 123, 255, 0.45) 0%, rgba(0, 40, 90, 0.55) 100%),
    url('../img/hero-evento.jpg') center/cover no-repeat;
  padding: 80px 0;
  color: white;
  text-align: center;
  margin-bottom: 40px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
}

/* =========================================================
   EVENT CARDS (Premium Style)
   ========================================================= */
.area-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 40px 0 20px;
  color: #111;
  display: flex;
  align-items: center;
  gap: 10px;
}

.area-title::before {
  content: "";
  display: block;
  width: 4px;
  height: 24px;
  background: var(--cor-primaria);
  border-radius: 2px;
}

.event-card {
  border: 1px solid var(--cor-borda);
  border-radius: 12px;
  background: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sombra-forte);
  border-color: var(--cor-primaria);
}

.image-container {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-blur-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(15px) brightness(0.6);
  transform: scale(1.1);
  z-index: 1;
}

.image-main {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain; /* Exibe a imagem inteira sem cortes */
  transition: transform 0.5s ease;
}

.event-card:hover .image-main {
  transform: scale(1.02);
}

.categoria-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--cor-primaria);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
  line-height: 1.3;
}

.event-info {
  font-size: 0.85rem;
  color: var(--cor-texto-sec);
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-info i {
  color: var(--cor-primaria);
  width: 16px;
}

.btn-primary {
  background-color: var(--cor-primaria);
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.2s;
}

.btn-primary:hover {
  background-color: #0062cc;
}

/* =========================================================
   SWIPER CUSTOMIZATION
   ========================================================= */
.swiper {
  padding-bottom: 50px !important;
}

.swiper-button-next, .swiper-button-prev {
  background: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  color: var(--cor-primaria) !important;
}

.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 18px !important;
  font-weight: 900;
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: #f8f9fa;
  padding: 60px 0 30px;
  margin-top: 80px;
  border-top: 1px solid var(--cor-borda);
}

.footer-title {
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--cor-texto-sec);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--cor-primaria);
}
