       /* ── TEMPLATE 3: Landing de Evento ── */

        /* Bloco de countdown */
        .evento-countdown {
            background: #0b2a4a;
            color: #fff;
            text-align: center;
            padding: 3em 2em;
            margin-bottom: 0;
        }

        .evento-countdown h3 {
            color: var(--dourado);
            font-size: 0.9em;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: 1.5em;
        }

        .countdown-timer {
            display: flex;
            justify-content: center;
            gap: 2em;
            flex-wrap: wrap;
        }

        .countdown-bloco {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 80px;
        }

        .countdown-bloco .numero {
            font-size: 3em;
            font-weight: 600;
            color: var(--dourado);
            line-height: 1;
        }

        .countdown-bloco .label {
            font-size: 0.75em;
            color: rgba(255,255,255,0.6);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-top: 0.4em;
        }

        /* Bloco de info do evento */
        .evento-info {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            background: var(--dourado);
        }

        .evento-info-item {
            padding: 2em;
            text-align: center;
            border-right: solid 1px rgba(0,0,0,0.1);
        }

        .evento-info-item:last-child { border-right: 0; }

        .evento-info-item .icone {
            font-size: 2em;
            margin-bottom: 0.3em;
            display: block;
        }

        .evento-info-item h4 {
            font-size: 0.75em;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: rgba(0,0,0,0.5);
            margin-bottom: 0.3em;
        }

        .evento-info-item p {
            font-weight: 600;
            color: #000;
            margin: 0;
            text-align: center;
            font-size: 1em;
        }

        /* Programação */
        .programacao {
            max-width: 100%;
            margin: 0 auto;
        }

        .tag-desc { flex: 1;}

        .tag-materia {
            margin-bottom: 3em;
        }

        .tag-materia h3 {
            color: var(--dourado);
            border-bottom: solid 1px rgba(128,128,128,0.2);
            padding-bottom: 0.5em;
            margin-bottom: 1.5em;
        }

        .tag-noticias {
            display: flex;
            gap: 1.5em;
            margin-bottom: 1.2em;
            padding-bottom: 1.em;
            border-bottom: solid 1px rgba(128,128,128,0.1);
            align-items: flex-start;
        }



        .tag-noticias:last-child { border-bottom: 0; }

.tag-img {
    display: block;
    flex-shrink: 0;
}

        .tag-img  img{
            width: 300px;
            height: auto;
            margin: 0.1em 2em 0 0;
        }

        .tag-desc h4 {
            margin-bottom: 0.4em;
            font-size: 1.4em;
        }

        .tag-desc p {
            font-size: 1.05em;
            font-weight: 500;
            color: var(--texto-medio);
            margin: 0;
            text-align: left;
        }

        .tag-titulo {
            display: inline-block;
            color: #000;
            font-size: 1.5em;
            padding: 0.15em 0;
            font-weight: 700;
            margin-bottom: 0.3em;
            letter-spacing: 0.05em;
        }

        /* CTA inscrição */
        .evento-cta {
            background: #0b2a4a;
            color: #fff;
            text-align: center;
            padding: 4em 2em;
        }

        .evento-cta h2 { color: var(--dourado); margin-bottom: 0.5em; }
        .evento-cta p  { color: rgba(255,255,255,0.75); margin-bottom: 2em; }
        .evento-cta .button { font-size: 1.1em; padding: 0.8em 3.5em; }


        /* Responsivo */
        @media (max-width: 760px) {

    .evento-info { grid-template-columns: 1fr; }
    .evento-info-item { border-right: 0; border-bottom: solid 1px rgba(0,0,0,0.1); }
    
    .countdown-bloco .numero { font-size: 2em; }

    .tag-noticias {
        flex-direction: column;
    }

    .tag-img,
    .tag-img img {
        width: 100%;
        max-width: 100%;
        margin: 0 0 1em 0;
    }

    .tag-desc h4 { font-size: 1.2em; }

    .evento-cta { padding: 2.5em 1em; }
}