.is-hidden{
    display: none;
}

/* ─── Event Highlights — espaçamentos e tipografia ─────────────────────────*/
.jc-highlights-wrapper {
    display: flex;
    flex-direction: column;
}

.jc-highlights-title {
    font-size: clamp(32px, 6.4vw, 66px);
    line-height: 1;
}

.jc-highlights-subtitle {
    margin-top: 20px;
}

.jc-highlights-description {
    margin-top: 15px;
}

.jc-highlights-bottom {
    margin-top: 25px;
    align-items: center;
}

@media (max-width: 639px) {
    .jc-highlights-bottom {
        padding: 14px;
    }
}

/* ─── Event Highlights — estilo dos cards ──────────────────────────────────*/
.jc-highlight-card {
    background-color: #EDE8DF;
    border: 1px solid #D3CEC5;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

/* Frame do ícone dos cards — 50px total (padding 10px + ícone 30px) */
.jc-highlight-icon-frame {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: var(--color-jungle-green, #cafd34);
    border-radius: 10px;
    padding: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.jc-highlight-icon {
    display: block;
    width: 30px;
    height: 30px;
    object-fit: contain;
}

/* Frame do ícone do card de rodapé — 70px total (padding 10px + ícone 50px) */
.jc-highlights-bottom-icon-frame {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background-color: #BAE700;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.jc-highlights-bottom-icon {
    display: block;
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* ─── Event Highlights — grade de cards responsiva ─────────────────────────
   Classes Tailwind responsivas (sm:, lg:) não estão no build compilado pois
   o arquivo foi criado após o último `vite build`. Definidas aqui até o próximo build.
   ────────────────────────────────────────────────────────────────────────── */
.jc-highlights-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 40px;
}

/* sm: 640px — 2 colunas */
@media (min-width: 640px) {
    .jc-highlights-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* lg: 1024px — 4 colunas */
@media (min-width: 1024px) {
    .jc-highlights-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1rem;
    }
}

#inscricao{
    z-index: 1;
}