
:root {
    --agenda-azul-escuro: #034f7d;
    --agenda-azul-principal: #0077b6;
    --agenda-azul-secundario: #149bd7;
    --agenda-azul-claro: #e5f5fc;
    --agenda-amarelo: #f5a623;
    --agenda-texto: #172033;
    --agenda-texto-suave: #657282;
    --agenda-borda: #dce7ee;
    --agenda-fundo: #f3f7fa;
    --agenda-branco: #ffffff;
    --agenda-sombra:
        0 18px 45px rgba(10, 61, 91, 0.11);
}


body {
    margin: 0;
    background: var(--agenda-fundo);
    font-family: 'Montserrat', sans-serif;
}


.agenda-page {
    min-height: 100vh;
    overflow: hidden;
    background: var(--agenda-fundo);
}


.agenda-container {
    width: calc(100% - 40px);
    max-width: 1400px;
    margin: 0 auto;
}


/* HERO */

.agenda-hero {
    position: relative;
    isolation: isolate;
    min-height: 450px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0 110px;
    color: var(--agenda-branco);
    background-image:
        url('https://unimeo.com.br/app/views/imagens/agenda.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.agenda-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(2, 48, 78, 0.96) 0%,
            rgba(3, 79, 125, 0.9) 45%,
            rgba(0, 119, 182, 0.48) 100%
        );
}


.agenda-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.16;
    background-image:
        linear-gradient(
            120deg,
            transparent 0 66%,
            rgba(255, 255, 255, 0.12) 66% 67%,
            transparent 67%
        );
    pointer-events: none;
}


.agenda-hero-decoracao {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
}


.agenda-hero-decoracao-1 {
    width: 340px;
    height: 340px;
    top: -170px;
    right: -90px;
    border: 65px solid rgba(255, 255, 255, 0.07);
}


.agenda-hero-decoracao-2 {
    width: 220px;
    height: 220px;
    bottom: -120px;
    left: -80px;
    background: rgba(255, 255, 255, 0.06);
}


.agenda-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 35px;
    font-size: 13px;
    font-weight: 600;
}


.agenda-breadcrumb a,
.agenda-breadcrumb span {
    color: rgba(255, 255, 255, 0.79);
    text-decoration: none;
}


.agenda-breadcrumb a:hover {
    color: var(--agenda-branco);
}


.agenda-hero-conteudo {
    max-width: 770px;
}


.agenda-hero-label {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    margin-bottom: 19px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}


.agenda-hero h1 {
    margin: 0 0 20px;
    color: var(--agenda-branco);
    font-size: clamp(38px, 6vw, 68px);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.045em;
}


.agenda-hero p {
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    line-height: 1.75;
}


/* BUSCA */

.agenda-busca-section {
    position: relative;
    z-index: 3;
}


.agenda-busca-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(440px, 1.2fr);
    align-items: center;
    gap: 45px;
    margin-top: -65px;
    padding: 36px 40px;
    border: 1px solid rgba(220, 231, 238, 0.88);
    border-radius: 24px;
    background: var(--agenda-branco);
    box-shadow: var(--agenda-sombra);
}


.agenda-section-label {
    display: block;
    margin-bottom: 8px;
    color: var(--agenda-azul-principal);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}


.agenda-busca-texto h2,
.agenda-listagem-cabecalho h2 {
    margin: 0;
    color: var(--agenda-texto);
    font-size: clamp(25px, 3vw, 34px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
}


.agenda-busca-texto p,
.agenda-listagem-cabecalho p {
    margin: 10px 0 0;
    color: var(--agenda-texto-suave);
    font-size: 14px;
    line-height: 1.65;
}


.agenda-busca-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
}


.agenda-campo-busca {
    position: relative;
    display: flex;
    align-items: center;
}


.agenda-campo-busca svg {
    position: absolute;
    left: 17px;
    color: #81909e;
    pointer-events: none;
}


.agenda-campo-busca input {
    width: 100%;
    min-height: 54px;
    padding: 13px 18px 13px 50px;
    border: 1px solid var(--agenda-borda);
    border-radius: 12px;
    outline: none;
    color: var(--agenda-texto);
    background: #f8fbfd;
    font-family: inherit;
    font-size: 14px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.agenda-campo-busca input::placeholder {
    color: #8a98a5;
}


.agenda-campo-busca input:focus {
    border-color: var(--agenda-azul-principal);
    background: var(--agenda-branco);
    box-shadow:
        0 0 0 4px rgba(0, 119, 182, 0.11);
}


.agenda-busca-form button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border: 0;
    border-radius: 12px;
    color: var(--agenda-branco);
    background:
        linear-gradient(
            135deg,
            var(--agenda-azul-principal),
            var(--agenda-azul-escuro)
        );
    box-shadow:
        0 10px 21px rgba(0, 119, 182, 0.2);
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.agenda-busca-form button:hover {
    transform: translateY(-2px);
    box-shadow:
        0 15px 28px rgba(0, 95, 152, 0.25);
}


.agenda-limpar-busca {
    grid-column: 1 / -1;
    justify-self: end;
    color: var(--agenda-azul-principal);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}


.agenda-limpar-busca:hover {
    text-decoration: underline;
}


/* LISTAGEM */

.agenda-listagem-section {
    padding: 75px 0 90px;
}


.agenda-listagem-cabecalho {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 32px;
}


.agenda-total {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 15px;
    border-radius: 999px;
    color: var(--agenda-azul-escuro);
    background: var(--agenda-azul-claro);
    font-size: 12px;
    font-weight: 750;
    white-space: nowrap;
}


.agenda-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 22px;
}


/* CARD */

.agenda-card {
    position: relative;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    min-height: 260px;
    overflow: hidden;
    border: 1px solid var(--agenda-borda);
    border-radius: 20px;
    color: inherit;
    background: var(--agenda-branco);
    box-shadow:
        0 10px 30px rgba(10, 61, 91, 0.07);
    text-decoration: none;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.agenda-card::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background:
        linear-gradient(
            90deg,
            var(--agenda-azul-principal),
            var(--agenda-azul-secundario)
        );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}


.agenda-card:hover {
    color: inherit;
    border-color: rgba(0, 119, 182, 0.28);
    transform: translateY(-6px);
    box-shadow:
        0 20px 45px rgba(10, 61, 91, 0.13);
}


.agenda-card:hover::after {
    transform: scaleX(1);
}


/* DATA */

.agenda-card-data {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 25px 15px;
    color: var(--agenda-branco);
    background:
        linear-gradient(
            160deg,
            var(--agenda-azul-principal),
            var(--agenda-azul-escuro)
        );
    text-align: center;
}


.agenda-card-dia {
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
}


.agenda-card-mes {
    margin-top: 7px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
}


.agenda-card-ano {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 11px;
    font-weight: 600;
}


/* CONTEÚDO DO CARD */

.agenda-card-conteudo {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 26px 28px 25px;
}


.agenda-card-topo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 14px;
}


.agenda-card-categoria {
    color: var(--agenda-azul-principal);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}


.agenda-card-seta {
    display: flex;
    width: 38px;
    height: 38px;
    min-width: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--agenda-azul-principal);
    background: var(--agenda-azul-claro);
    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}


.agenda-card:hover .agenda-card-seta {
    color: var(--agenda-branco);
    background: var(--agenda-azul-principal);
    transform: translateX(4px);
}


.agenda-card h3 {
    margin: 0 0 12px;
    color: var(--agenda-texto);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.02em;
}


.agenda-card-descricao {
    display: -webkit-box;
    margin: 0 0 20px;
    overflow: hidden;
    color: var(--agenda-texto-suave);
    font-size: 13px;
    line-height: 1.65;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}


.agenda-card-informacoes {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 11px 18px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid #e9f0f4;
}


.agenda-card-info {
    display: flex;
    min-width: 0;
    align-items: flex-start;
    gap: 8px;
    color: #516273;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}


.agenda-card-info > span:last-child {
    overflow-wrap: anywhere;
}


.agenda-info-icone {
    display: flex;
    width: 29px;
    height: 29px;
    min-width: 29px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--agenda-azul-principal);
    background: var(--agenda-azul-claro);
}


/* SEM RESULTADOS */

.agenda-sem-resultados {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 35px;
    border: 1px solid var(--agenda-borda);
    border-radius: 23px;
    background: var(--agenda-branco);
    box-shadow: var(--agenda-sombra);
    text-align: center;
}


.agenda-sem-resultados-icone {
    display: flex;
    width: 82px;
    height: 82px;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    border-radius: 50%;
    color: var(--agenda-azul-principal);
    background: var(--agenda-azul-claro);
}


.agenda-sem-resultados h3 {
    margin: 0 0 12px;
    color: var(--agenda-texto);
    font-size: 25px;
    font-weight: 800;
}


.agenda-sem-resultados p {
    max-width: 520px;
    margin: 0 auto 24px;
    color: var(--agenda-texto-suave);
    font-size: 14px;
    line-height: 1.7;
}


.agenda-sem-resultados a {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border-radius: 10px;
    color: var(--agenda-branco);
    background: var(--agenda-azul-principal);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}


/* RESPONSIVO */

@media (max-width: 1050px) {

    .agenda-busca-card {
        grid-template-columns: 1fr;
        gap: 27px;
    }

    .agenda-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 680px) {

    .agenda-container {
        width: calc(100% - 26px);
    }

    .agenda-hero {
        min-height: 400px;
        padding: 42px 0 95px;
        background-position: 60% center;
    }

    .agenda-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(2, 48, 78, 0.97),
                rgba(3, 79, 125, 0.84)
            );
    }

    .agenda-breadcrumb {
        margin-bottom: 27px;
    }

    .agenda-hero h1 {
        font-size: 39px;
    }

    .agenda-hero p {
        font-size: 15px;
        line-height: 1.7;
    }

    .agenda-busca-card {
        margin-top: -52px;
        padding: 28px 20px;
        border-radius: 19px;
    }

    .agenda-busca-form {
        grid-template-columns: 1fr;
    }

    .agenda-busca-form button {
        width: 100%;
    }

    .agenda-limpar-busca {
        justify-self: center;
    }

    .agenda-listagem-section {
        padding: 58px 0 70px;
    }

    .agenda-listagem-cabecalho {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .agenda-card {
        grid-template-columns: 74px minmax(0, 1fr);
        min-height: 0;
        border-radius: 17px;
    }

    .agenda-card-data {
        padding: 22px 10px;
    }

    .agenda-card-dia {
        font-size: 31px;
    }

    .agenda-card-mes {
        font-size: 11px;
    }

    .agenda-card-conteudo {
        padding: 22px 18px;
    }

    .agenda-card-topo {
        align-items: flex-start;
    }

    .agenda-card-seta {
        width: 34px;
        height: 34px;
        min-width: 34px;
    }

    .agenda-card h3 {
        font-size: 16px;
    }

    .agenda-card-descricao {
        font-size: 12px;
    }

    .agenda-card-informacoes {
        align-items: stretch;
        flex-direction: column;
        gap: 9px;
    }

    .agenda-sem-resultados {
        padding: 45px 22px;
    }

}


@media (max-width: 420px) {

    .agenda-card {
        grid-template-columns: 1fr;
    }

    .agenda-card-data {
        min-height: 84px;
        flex-direction: row;
        gap: 8px;
    }

    .agenda-card-dia {
        font-size: 30px;
    }

    .agenda-card-mes,
    .agenda-card-ano {
        margin-top: 0;
    }

    .agenda-card-ano::before {
        content: '•';
        margin-right: 8px;
        color: rgba(255, 255, 255, 0.55);
    }

}



.agenda-detalhe-page {
    min-height: 100vh;
    overflow: hidden;
    background: var(--agenda-fundo);
}


.agenda-page-container {
    width: calc(100% - 40px);
    max-width: 1400px;
    margin: 0 auto;
}


/* HERO */

.agenda-detalhe-hero {
    position: relative;
    isolation: isolate;
    min-height: 470px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 55px 0 125px;
    color: var(--agenda-branco);
    background-image:
        url('https://unimeo.com.br/app/views/imagens/agenda.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.agenda-detalhe-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(2, 48, 78, 0.97) 0%,
            rgba(3, 79, 125, 0.92) 48%,
            rgba(0, 119, 182, 0.55) 100%
        );
}


.agenda-detalhe-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.16;
    background-image:
        linear-gradient(
            120deg,
            transparent 0 66%,
            rgba(255, 255, 255, 0.12) 66% 67%,
            transparent 67%
        );
    pointer-events: none;
}


.agenda-hero-decoracao {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
}


.agenda-hero-decoracao-1 {
    width: 340px;
    height: 340px;
    top: -170px;
    right: -90px;
    border: 65px solid rgba(255, 255, 255, 0.07);
}


.agenda-hero-decoracao-2 {
    width: 220px;
    height: 220px;
    bottom: -120px;
    left: -80px;
    background: rgba(255, 255, 255, 0.06);
}


.agenda-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 35px;
    font-size: 13px;
    font-weight: 600;
}


.agenda-breadcrumb a,
.agenda-breadcrumb span {
    color: rgba(255, 255, 255, 0.79);
    text-decoration: none;
}


.agenda-breadcrumb a:hover {
    color: var(--agenda-branco);
}


.agenda-hero-conteudo {
    max-width: 1020px;
}


.agenda-hero-label {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}


.agenda-detalhe-hero h1 {
    max-width: 1050px;
    margin: 0;
    color: var(--agenda-branco);
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.13;
    letter-spacing: -0.04em;
}


.agenda-hero-informacoes {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
}


.agenda-hero-info {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 8px;
}


.agenda-hero-info span {
    overflow-wrap: anywhere;
}


.agenda-hero-divisor {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}


/* CARD PRINCIPAL */

.agenda-conteudo-section {
    position: relative;
    z-index: 3;
    padding: 0 0 85px;
}


.agenda-evento-card {
    max-width: 1120px;
    margin: -72px auto 0;
    padding: 52px 60px 42px;
    border: 1px solid rgba(220, 231, 238, 0.9);
    border-radius: 27px;
    background: var(--agenda-branco);
    box-shadow: var(--agenda-sombra);
}


.agenda-evento-cabecalho {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 27px;
}


.agenda-data-grande {
    display: flex;
    width: 105px;
    min-width: 105px;
    min-height: 125px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 18px 12px;
    border-radius: 19px;
    color: var(--agenda-branco);
    background:
        linear-gradient(
            155deg,
            var(--agenda-azul-principal),
            var(--agenda-azul-escuro)
        );
    box-shadow:
        0 14px 27px rgba(0, 119, 182, 0.22);
    text-align: center;
}


.agenda-data-dia {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.045em;
}


.agenda-data-mes {
    margin-top: 7px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
}


.agenda-data-ano {
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 11px;
    font-weight: 600;
}


.agenda-section-label {
    display: block;
    margin-bottom: 8px;
    color: var(--agenda-azul-principal);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}


.agenda-evento-titulo h2 {
    margin: 0;
    color: var(--agenda-texto);
    font-size: clamp(27px, 3.5vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.035em;
}


.agenda-evento-titulo p {
    max-width: 700px;
    margin: 12px 0 0;
    color: var(--agenda-texto-suave);
    font-size: 14px;
    line-height: 1.7;
}


/* INFORMAÇÕES */

.agenda-evento-informacoes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 38px;
}


.agenda-info-card {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border: 1px solid var(--agenda-borda);
    border-radius: 16px;
    background:
        linear-gradient(
            135deg,
            #f7fbfd,
            #ffffff
        );
}


.agenda-info-card-icone {
    display: flex;
    width: 48px;
    height: 48px;
    min-width: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: var(--agenda-azul-principal);
    background: var(--agenda-azul-claro);
}


.agenda-info-card > div:last-child {
    min-width: 0;
}


.agenda-info-label {
    display: block;
    margin-bottom: 4px;
    color: var(--agenda-texto-suave);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}


.agenda-info-card strong {
    display: block;
    color: var(--agenda-texto);
    font-size: 14px;
    font-weight: 750;
    line-height: 1.5;
    overflow-wrap: anywhere;
}


.agenda-separador {
    width: 100%;
    height: 1px;
    margin: 42px 0;
    background:
        linear-gradient(
            90deg,
            var(--agenda-borda),
            transparent
        );
}


/* DESCRIÇÃO */

.agenda-descricao-cabecalho {
    margin-bottom: 25px;
}


.agenda-descricao-cabecalho h2 {
    margin: 0;
    color: var(--agenda-texto);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.03em;
}


.agenda-descricao {
    color: #384758;
    font-size: 16px;
    line-height: 1.9;
    overflow-wrap: anywhere;
}


.agenda-descricao p {
    margin: 0 0 22px;
}


.agenda-descricao h1,
.agenda-descricao h2,
.agenda-descricao h3,
.agenda-descricao h4 {
    margin-top: 34px;
    margin-bottom: 15px;
    color: var(--agenda-texto);
    font-weight: 750;
    line-height: 1.3;
}


.agenda-descricao h2 {
    font-size: 26px;
}


.agenda-descricao h3 {
    font-size: 21px;
}


.agenda-descricao ul,
.agenda-descricao ol {
    margin: 20px 0;
    padding-left: 25px;
}


.agenda-descricao li {
    margin-bottom: 9px;
}


.agenda-descricao a {
    color: var(--agenda-azul-principal);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}


.agenda-descricao img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 28px auto;
    border-radius: 15px;
}


.agenda-descricao iframe,
.agenda-descricao video {
    max-width: 100%;
    border-radius: 14px;
}


.agenda-descricao table {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 25px 0;
    overflow-x: auto;
    border-collapse: collapse;
}


.agenda-descricao table td,
.agenda-descricao table th {
    padding: 11px 14px;
    border: 1px solid var(--agenda-borda);
}


.agenda-descricao blockquote {
    margin: 28px 0;
    padding: 20px 24px;
    border-left: 4px solid var(--agenda-azul-principal);
    border-radius: 0 12px 12px 0;
    color: #41586a;
    background: #f2f8fb;
    font-style: italic;
}


/* RODAPÉ */

.agenda-evento-rodape {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 50px;
    padding: 26px 28px;
    border: 1px solid #dbeaf2;
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            #f1f9fd,
            #f8fcfe
        );
}


.agenda-rodape-texto span {
    display: block;
    margin-bottom: 5px;
    color: var(--agenda-texto);
    font-size: 15px;
    font-weight: 800;
}


.agenda-rodape-texto p {
    margin: 0;
    color: var(--agenda-texto-suave);
    font-size: 13px;
    line-height: 1.55;
}


.agenda-btn-principal {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 21px;
    border-radius: 11px;
    color: var(--agenda-branco);
    background:
        linear-gradient(
            135deg,
            var(--agenda-azul-principal),
            var(--agenda-azul-escuro)
        );
    box-shadow:
        0 10px 21px rgba(0, 119, 182, 0.2);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.agenda-btn-principal:hover {
    color: var(--agenda-branco);
    transform: translateY(-2px);
    box-shadow:
        0 15px 28px rgba(0, 95, 152, 0.25);
}


/* EVENTO NÃO ENCONTRADO */

.agenda-erro-section {
    min-height: 72vh;
    display: flex;
    align-items: center;
    padding: 75px 0;
}


.agenda-erro-card {
    max-width: 680px;
    margin: 0 auto;
    padding: 58px 38px;
    border: 1px solid var(--agenda-borda);
    border-radius: 25px;
    background: var(--agenda-branco);
    box-shadow: var(--agenda-sombra);
    text-align: center;
}


.agenda-erro-icone {
    display: flex;
    width: 82px;
    height: 82px;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    border-radius: 50%;
    color: var(--agenda-azul-principal);
    background: var(--agenda-azul-claro);
}


.agenda-erro-card h1 {
    margin: 0 0 13px;
    color: var(--agenda-texto);
    font-size: 31px;
    font-weight: 800;
}


.agenda-erro-card p {
    max-width: 510px;
    margin: 0 auto 28px;
    color: var(--agenda-texto-suave);
    font-size: 15px;
    line-height: 1.7;
}


/* RESPONSIVO */

@media (max-width: 900px) {

    .agenda-evento-card {
        padding: 44px 38px 36px;
    }

    .agenda-evento-informacoes {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 680px) {

    .agenda-page-container {
        width: calc(100% - 26px);
    }

    .agenda-detalhe-hero {
        min-height: 420px;
        padding: 40px 0 100px;
        background-position: 60% center;
    }

    .agenda-detalhe-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(2, 48, 78, 0.97),
                rgba(3, 79, 125, 0.86)
            );
    }

    .agenda-breadcrumb {
        margin-bottom: 27px;
    }

    .agenda-detalhe-hero h1 {
        font-size: 32px;
        line-height: 1.18;
    }

    .agenda-hero-informacoes {
        align-items: flex-start;
        flex-direction: column;
        gap: 11px;
        margin-top: 23px;
    }

    .agenda-hero-divisor {
        display: none;
    }

    .agenda-evento-card {
        margin-top: -55px;
        padding: 30px 20px 25px;
        border-radius: 20px;
    }

    .agenda-evento-cabecalho {
        grid-template-columns: 1fr;
        gap: 21px;
    }

    .agenda-data-grande {
        width: 94px;
        min-width: 94px;
        min-height: 106px;
    }

    .agenda-data-dia {
        font-size: 36px;
    }

    .agenda-evento-titulo h2 {
        font-size: 26px;
    }

    .agenda-evento-informacoes {
        margin-top: 30px;
    }

    .agenda-info-card {
        padding: 17px;
    }

    .agenda-separador {
        margin: 34px 0;
    }

    .agenda-descricao-cabecalho h2 {
        font-size: 24px;
    }

    .agenda-descricao {
        font-size: 15px;
        line-height: 1.82;
    }

    .agenda-evento-rodape {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 40px;
        padding: 22px 20px;
    }

    .agenda-btn-principal {
        width: 100%;
    }

    .agenda-erro-card {
        padding: 45px 22px;
    }

}


