* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.center {
    max-width: 1200px;
    padding: 0 2%;
    display: flex;
    margin: 0 auto;
}

header {
    z-index: 1;
    height: 100px;
    width: 100%;
    display: inline-flex;
    position: fixed;
    justify-content: center;
    transition: ease-in-out .2s;
}

img {
    width: 100%;
    display: block;
}

.logo img {
    width: 150px;
    height: auto;
    margin: 10px;
}

.logo {
    width: 150px;
    height: auto;
    margin: 10px;
}

.menu-container {
    justify-content: space-between;
}

.menu-container a {
    display: inline-block;
    margin: 0 10px;
    padding: 0 10px;
    line-height: 40px;
    text-decoration: none;
    transition: 0.8s;
}

.menu-container a:hover {
    color: green;
}

section.main {
    position: relative;
    background-image: url(../images/foto-dn-design-bg.png);
    background-size: cover;
    background-position: center;
}

section.content-1 {
    background-image: url(../images/foto-dn-design-bg-002.png);
    padding: 20px 0;
    color: white;
}

section.content-2 {
    background-image: url(../images/foto-dn-design-bg-003.png);
    padding: 20px 0;
    color: white;
}

.single {
    width: 100%;
    text-align: left;
}

.single-container {
    width: 100%;
    justify-content: space-around;
}

.absolute {
    position: absolute;
    margin: 0 auto;
    width: 30vw;
    height: auto;
    bottom: 0;
}

@media screen and (max-width: 1430px) {
    .absolute {
        position: absolute;
        margin: 0 auto;
        width: 40vw;
        height: auto;
        bottom: 0;
    }
}

@media screen and (max-width: 768px) {
    .single-container {
        width: 100%;
        flex-direction: column;
    }

    .absolute {
        position: relative;
        margin: 0 auto;
        width: 90vw;
        height: auto;
        bottom: 0;
    }
}

/* Classes de padding */
.padding-5 {
    padding: 5px;
}

.padding-5-0 {
    padding: 5px 0;
}

.padding-10 {
    padding: 10px;
}

.padding-10-0 {
    padding: 10px 0;
}

.padding-15 {
    padding: 15px;
}

.padding-15-0 {
    padding: 15px 0;
}

.padding-20 {
    padding: 20px;
}

.padding-20-0 {
    padding: 20px 0;
}

/* Classes de margin */
.margin-5 {
    margin: 5px;
}

.margin-5-0 {
    margin: 5px 0;
}

.margin-10 {
    margin: 10px;
}

.margin-10-0 {
    margin: 10px 0;
}

.margin-15 {
    margin: 15px;
}

.margin-15-0 {
    margin: 15px 0;
}

.margin-20 {
    margin: 20px;
}

.margin-20-0 {
    margin: 20px 0;
}

/* Classes de espaços */

.space-25px {
    width: 100%;
    height: 25px;
    background-color: transparent;
}

.space-50px {
    width: 100%;
    height: 50px;
    background-color: transparent;
}

.space-100px {
    width: 100%;
    height: 100px;
    background-color: transparent;
}

.space-150px {
    width: 100%;
    height: 150px;
    background-color: transparent;
}

.space-200px {
    width: 100%;
    height: 200px;
    background-color: transparent;
}

/* Classes de alinhamentos */

.align-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.align-left {
    display: flex;
    align-items: flex-start;
    justify-content: left;
}

.align-right {
    display: flex;
    align-items: flex-end;
    justify-content: right;
}

.align-justify {
    display: flex;
    text-align: justify;
}

/* Estiliza a barra de rolagem */
::-webkit-scrollbar {
    width: 5px;
    /* Largura da barra de rolagem */
}

/* Estiliza o track (trilho) da barra de rolagem */
::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Cor de fundo do track */
}

/* Estiliza o thumb (alça) da barra de rolagem */
::-webkit-scrollbar-thumb {
    background: #abd263;
    /* Cor do thumb */
}

/* Estiliza o thumb quando o mouse passa sobre ele */
::-webkit-scrollbar-thumb:hover {
    background: #abd263;
    /* Cor do thumb no hover */
}

.icon-wpp {
    width: 45px;
    height: auto;
    padding: 5px;
}

.box-border {
    border: solid 1px #7074776e;
    border-radius: 20px;
    padding: 20px;
    margin: 5px;
    background-color: #0b131970;
}

.icon-wpp-svg {
    width: 100%;
    max-width: 350px;
    height: auto;
    margin: 10px auto;
}