.page-header {
    margin: 0;
    padding: 0 10px;
    display: flex;
    justify-content: CENTER; /* Espaça os elementos */
    align-items: center; /* Centraliza verticalmente */
    width: 100%; /* Ocupa 100% da largura */
    height: 120px;
    background-color: #dcf4fa;
}

.header-left {
    margin: 0;
    display: flex;
    width: min(25vw, 99px);
    height: 100%;
    align-items: center;
}
.header-center{
    display: flex;
    flex: 1;
    height: 100%;
    align-items: center;
    text-align: center; 
    white-space: normal; 
    word-wrap: break-word;
}

.header-right {
    width: min(15vw, 140px);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center; 
}

.legenda-pagina {
    margin: 0;
    margin-left: 4px;
    padding: 5px;
    display: flex;
    color: #19598d;
    font-size: 1.3rem;
    text-align: start;
    align-items: center;
}

.capitulo-pagina { 
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #69c0e4;
    color: white;
    font-weight: bold;
    min-height: 50px;
    max-height: 60px;
    padding: 5px 5px;
    border-radius: 30px 0 0 30px;
    font-size: 1.5rem;
    font-family: "AlumniItalic";
    text-align: center;
    line-height: 1;
    width: 100%;
}

.sumario-component {
    width: min(15vw, 140px);
    background-color: #69c0e4;
    color: white;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 30px 0px 30px 30px;
}

.sumario-component.collapsed {
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.sumario-component[aria-expanded="true"] .arrow {
    transform: rotate(180deg); /* Gira a seta para cima quando expandido */
}

.sumario-component-arrow { 
    margin-left: 5px;
    margin-right: 5px;
}

.sumario-component-text {
    font-weight: bold;
    margin-left: 10px;
    font-family: "AlumniItalic";
    font-size: 1.8rem;
}

@media (max-width: 730px) {
    .sumario-component-text {
        display: none; 
    }

    .sumario-component-arrow {
        display: inline-block; 
        font-size: 1.1rem; 
        margin-left: 0px;
        margin-right: 0px;
    }

    .header-right {
        width: 13vw;
    }

    .sumario-component {
        margin: 0px;
        border-radius: 30px 0px 30px 30px;
        padding: 15px;
        font-size: 1.2rem;
        color: white; 
        height: 30px;
        width: 40px;
    }   

    .capitulo-pagina{
        font-size: 1.3rem;
    }

    .legenda-pagina{
        font-size: 1.1rem;
    }
}

@media (max-width: 400px) {
    .header-left {
        width: 23vw;
    }

    .legenda-pagina{
        font-size: 1rem;
    }

    .capitulo-pagina{
        font-size: 1.1em;
        width: 100%;
    }

    .sumario-component-arrow {
        font-size: 1rem; 
    }

    .page-header{
        height: 90px;
    }
}

@media (max-width: 350px) {
    .header-left {
        width: 22vw;
    }

    .capitulo-pagina{
        font-size: 1rem;
    }
}

@media (max-width: 330px) {
    .header-right {
        width: 12vw;
    }

    .sumario-component-arrow {
        font-size: 1rem; 
    }
}