body {
    background-color: #5C3317; 
    color: white;
    margin: 0;
    font-family: Arial, sans-serif;
}

/*** Higiene ***/
.textoHig, .tituloHig, .textoE, .textoN {
    text-align: left;
    max-width: 800px;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 20px;
}


.higiene-container {
    display: flex;
    flex-direction: column;
    align-items: left; 
    gap: 20px;
    margin-top: 20px;
}


/** imagens principais **/
.imagensHigTop {
    display: flex;
    gap: 10px; 
    margin-bottom: 20px; 
    align-items: center; 
    justify-content: center;
}

.imagensHigTop .imageHig {
    width: 45%; 
    height: auto; 
}


/** imagens da parte de baixo **/
.imagensHig {
    display: flex;
    gap: 10px;
    justify-content: center;
    max-width: 100%;
}

.imagensHig .imageHig {
    width: 45%; 
    height: auto; 
}


/** imagens secundárias ***/
.imagensHigEsq {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    max-width: 100%;
}

.imagensHigEsq .imageHig {
    width: 45%; 
    height: auto; 
    justify-content: center;
}


/*** Rodapé ***/
.rodape {
    color: white;
    text-align: center;
    background-color: #6E2C00;
    font-size: 25px;
    padding: 10px;
}




.center{
    text-align: center;
}

.medieval-button {
    position: relative;
    background-color: #000000;
    padding: 15px 30px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 15px;
    border-style: solid;
    overflow: hidden;
    z-index: 1;
}

.medieval-button::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -10%;
    height: 180%;
    width: 0;
    border-radius: 100%;
    background-color: #420505;

    transition: all 750ms 0.3s;
}

.medieval-button:hover::before {
    width: 120%;
    height: 180%;
    transition: all 750ms 0.7s;
}

.button-text {
    position: relative;
    z-index: 2;
    color: white;
}

.sword {
    position: absolute;
    top: 50%;
    right: -100%;
    transform: translateY(-50%);
    transition: right 0.5s ease;
    z-index: -1;
    height: 40px;
}

.medieval-button:hover .sword {
    right: calc(25%);
}

