/* ============================================================
   TIPOS DE EVENTO — "o que fazemos"
   Gplay — site da banda
   ============================================================
   Painel "papel" — leitura calma entre a Galeria (noite) e o Media
   Kit (noite). 4 cards sem ordem de importância entre si — por isso
   NENHUMA numeração 01/02/03/04 aqui, só o ícone identifica cada um.
   ============================================================ */

/* padding vertical vem de .painel--papel em css/geral.css (afeta
   todas as seções brancas de uma vez). Não redeclarar aqui. */

.tipos-evento__container {
    max-width: var(--gp-container);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 56px);
}

/* título "Tipos de Evento" — estilo compartilhado em css/geral.css */

.tipos-evento__grade {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: clamp(28px, 4vw, 44px);
}

.tipo-evento-card {
    background: rgba(36, 31, 24, 0.03);
    border: 1px solid rgba(36, 31, 24, 0.12);
    border-radius: 3px;
    padding: 26px 22px;
    text-decoration: none;
    color: #241f18;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.tipo-evento-card:hover {
    border-color: var(--gp-vermelho);
    transform: translateY(-3px);
}

.tipo-evento-card__icone {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--gp-vermelho);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gp-vermelho);
    flex-shrink: 0;
}

.tipo-evento-card__titulo {
    font-family: var(--font-titulo);
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    line-height: 1.05;
}

.tipo-evento-card p {
    font-size: var(--gp-fs-texto);
    line-height: 1.55;
    color: #4a4335;
    margin: 0;
    flex-grow: 1;
}

.tipo-evento-card__link {
    font-family: var(--font-dado);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gp-vermelho);
}

/* ============================================================ RESPONSIVO */
@media (max-width: 900px) {
    .tipos-evento__grade {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .tipos-evento__grade {
        grid-template-columns: 1fr;
    }
}
