* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: "Roboto", Sans-serif;
            background-color: #fff;
        }
        /* Header Principal */
        .header {
            background-color: #fff;
            padding: 15px 20px;
            /*position: sticky;
            top: 0;
            z-index: 100;*/
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        /* Linha separadora */
        .separator-line {
            width: 100%;
            height: 2px;
            background-color: #e5e5e5;
            margin-top: 7px;
        }
        .header-content {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            max-width: 1200px;
            margin: 0 auto;
        }
        /* Logo em texto */
        .logo {
            display: flex;
            align-items: center;
            gap: 3px;
        }
        
        .logo-main {
            font-size: 32px;
            font-weight: 700;
            color: #c8102e;
            letter-spacing: -0.5px;
            line-height: 1;
        }
        
        .logo-subtitle {
            font-size: 14px;
            font-weight: 500;
            color: #1a1a1a;
            letter-spacing: 0.3px;
            align-self: flex-end;
            padding-bottom: 3px;
        }
        
        /* Menu hamburguer (opcional) */
        .menu-icon {
            display: flex;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
            padding: 5px;
        }
        
        .menu-icon span {
            width: 22px;
            height: 2px;
            background-color: #333;
            display: block;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .header {
                padding: 12px 15px;
            }
            
            .logo-main {
                font-size: 28px;
            }
            
            .logo-subtitle {
                font-size: 12px;
            }
        }

.topo-0{
    padding: 15px 0 30px 0;
}    

.titulo-topo-0{
    font-weight: 600;
    -webkit-text-stroke-color: #000;
    stroke: #000;
    color: #000000;
    font-size: 32px;
    letter-spacing: -0.1px;
    line-height: 1.3;
    margin-top: 40px;
}

.subtitulo-topo-0{
    font-size: 23px;
    font-weight: 500;
    -webkit-text-stroke-color: #000;
    stroke: #000;
    color: #000000;
}

.texto-data{
    color: #6e6e6e;
    font-size: 14px;
    line-height: 1.8;
    margin: 8px 0;
    text-align: left;
}

.img-conteudo2{
    display: block;
    width: 100%;
    height: auto;
    margin: 20px auto;
    max-width: 650px;
}

.rodape{
    background-color: #000;
    padding: 40px 0 20px 0;
}

.texto-rodape{
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
    font-weight: 400;
    margin-bottom: 20px;
    margin-top: 20px;
}

.texto-rodape a{
    text-decoration: none;
    color: #fff;
}

.container-rodape{
    display: flex;
    justify-content: center;
    gap: 10px;
}

@media screen and (max-width: 600px) {

    .container-rodape{
        display: block;
    }

     .texto-data{
        font-size: 12px;
    }

    .titulo-topo-0{
        font-size: 23px;
        text-align: center;
        margin-top: 30px;
    }

    .subtitulo-topo-0{
        font-size: 18px;
        text-align: center;
    }

}