@font-face {
    font-family: 'MonumentExtended';
    src: url('../fonts/MonumentExtended-Ultrabold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

@media (max-width: 768px) {
    .main-section p, span {
        line-height: normal;
    }

    html body .main-section {
        padding: 47px 22px;
    }
}

html body .main-section {
    font-family: 'MonumentExtended', sans-serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 40px;
    text-align: left;
    margin-bottom: 16px;
    text-transform: uppercase;
}

body {
    background-color: #000000;
}

header {
    background-color: transparent !important;
    position: static !important;
}

header .bg-menu {
    background-image: none !important;
    position: static !important;
}

.principal {
    margin-top: 10px;
    padding: 32px;
}

.main-section p, span, label, input {
    font-family: 'Space Grotesk', sans-serif !important;
    color: white !important;
    text-align: left;
    font-size: 16px !important;
    text-transform: none;
    font-weight: 400 !important;
    margin: 0;
}

h2 {
    font-size: 25px;
    font-weight: 700;
    line-height: 31.9px;
    text-align: left;
    color: white !important;
}

.main-section {
    margin: 47px 0 20px 0;
}

.div-title {
    padding-bottom: 20px;
    border-bottom: 1px solid #2E2E2E;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.alert-app {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #EC31611A;
    padding: 5px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid #EC3161;
    width: fit-content;
}

html body label {
    font-weight: 500 !important;
}

form .form-dados {
    row-gap: 16px;
}

form input.input {
    background-color: #282828;
    border: 1px solid #2F2F2F;
    font-weight: 500 !important;
    padding: 0.8rem 1.4rem;
}

input.inactive {
    background-color: #000000 !important;
    border: 1px solid #2F2F2F !important;
    color: #767676 !important;
}

.btn-alteracao {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Space Grotesk', sans-serif !important;
    text-transform: uppercase;
    color: #FFF !important;
    background-color: #242424 !important;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    height: 100%;
}

.btn-tab {
    background-color: transparent;
    border: none;
    padding: 5px 35px;
    border-radius: 50px;
    color: #FFF !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 15px;
    font-weight: 500;
}

.btn-tab.active {
    background-color: #3841FF !important;
}


/*TICKETS*/
.event-card {
    border-radius: 18px;
    margin-bottom: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    position: relative;
    cursor: pointer;
}

.event-thumb {
    background: #1f1f1f;
    border-radius: 10px;
    padding: 15px;
    position: relative;
    width: 340px;
    height: 190px;
}

.event-thumb::after{
    content: "";
    position: absolute;
    top: 14px;
    bottom: 14px;

    /* fica exatamente no meio da “junção” */
    right: -1px;          /* metade entra no body */
    width: 2px;

    background:
            radial-gradient(circle, rgba(255,255,255,.22) 2px, transparent 2.2px)
            50% 0 / 10px 10px repeat-y;

    opacity: .9;
    pointer-events: none;
    z-index: 5;
}

.event-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.event-body {
    background: #1f1f1f;
    border-radius: 10px;
    padding: 18px 18px;
    min-height: 190px;
}

.event-title {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin: 0 0 14px 0;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;   /* máximo 2 linhas */
    overflow: hidden;
    word-break: break-word;
}

.meta-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    line-height: 1.2;
    margin-bottom: 10px;
}

.meta-row i {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.55);
}

.meta-row span {
    font-weight: 400;
    font-size: 15px;
    color: #AAAAAA !important;
}

.event-cta {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    text-decoration: none;
    transition: transform 0.15s ease, background 0.15s ease;
}

.event-cta i {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
}

.event-cta:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.18);
}

.event-card { gap: 0; } /* encosta tudo */


/* Responsivo: empilha no mobile */
@media (max-width: 768px) {
    .event-card {
        flex-direction: column;
    }
    .event-thumb {
        width: 100%;
        height: 210px;
    }
    .event-thumb::after{
        top: auto;
        bottom: -1px;
        left: 14px;
        right: 14px;
        width: auto;
        height: 2px;

        background:
                radial-gradient(circle, rgba(255,255,255,.22) 2px, transparent 2.2px)
                0 50% / 10px 10px repeat-x;
    }
    .event-body {
        min-height: auto;
    }
    .event-cta {
        width: 51px;
        height: 51px;
    }
    .event-title {
        font-size: 18px;
    }
    .meta-row span {
        font-size: 14px !important;
    }
}