/* ===== SECTION TITLE ===== */
.home .section-title {
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: black;
    padding: 30px;
    margin-top: 30px;
}

/* ===== EVENTS CONTAINER ===== */


/* ===== SECTION TITLE MARGIN ===== */
/*.section-title {*/
/*    margin-top: 30px;*/
/*}*/

/* ===== BOTÃO EXPLORAR TODOS ===== */
.explore-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 32px 0 16px;
    width: 100%;
}

.explore-row .btn-primary {
    display: inline-flex !important;
    width: auto !important;
    padding: 12px 28px !important;
    font-size: 14px !important;
    background: var(--black, #0e0e0e) !important;
    color: var(--white, #fff) !important;
    border: none !important;
    border-radius: 30px !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.explore-row .btn-primary:hover {
    background: #222 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}