/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
}


.events-hero-carousel {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 30px 0;
    position: relative;
}

.main-event-card {
    width: 90%;
    max-width: 1150px;
    height: 300px;
    border-radius: 30px;
    background: linear-gradient(135deg, #5b2cff, #00c3ff);
    position: relative;
    overflow: hidden;
}

/* “Slides” laterais fake */
.main-event-card::before,
.main-event-card::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80%;
    height: 100%;
    border-radius: 30px;
    background: rgba(0,0,0,0.15);
    z-index: -1;
}

.main-event-card::before {
    left: -90px;
}

.main-event-card::after {
    right: -90px;
}

/* Texto do hero */
.event-info {
    height: 100%;
    padding: 50px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-info h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.event-info p {
    font-size: 18px;
}

/* =========================
   TÍTULO CENTRAL
========================= */
.section-title {
    font-size: 26px;
    margin-bottom: 25px;
}

/* =========================
   CONTAINER PADRÃO
========================= */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

/* =========================
   CARDS – EDIÇÕES ANTERIORES
========================= */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
}


.event-card > div:first-child,
.event-card img {
    height: 160px;
    background: linear-gradient(135deg, #999, #ccc);
}


.card-content {
    padding: 20px;
    text-align: center;
}

.card-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.card-content p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #666;
}


.btn-card {
    display: inline-block;
    background: #ff7a00;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
}


.photo-gallery-carousel {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 40px 0;
    position: relative;
}


.gallery-item {
    width: 260px;
    height: 180px;
    border-radius: 20px;
    background: #cfcfcf;
}


