@font-face {
    font-family: "DIN Next Black";
    src: url(../fonts/DINNextLTPro-Black.ttf) format('truetype');
}

@font-face {
    font-family: "DIN Next Bold";
    src: url(../fonts/DINNextLTPro-Bold.ttf) format('truetype');
}

@font-face {
    font-family: "DIN Next Light";
    src: url(../fonts/DINNextLTPro-Light.ttf) format('truetype');
}

@font-face {
    font-family: "DIN Next Medium";
    src: url(../fonts/DINNextLTPro-Medium.ttf) format('truetype');
}


* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}



header {
    background-color: #f0f0f0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 90px;
    position: fixed;
    top: 0px;
    z-index: 100;

}


header img {
    width: 250px;
    height: 50px;
    margin-top: 20px;
    margin-left: 45px;

}

nav {
    display: flex;
    gap: 20px;
    margin-right: 20px;
    align-items: center;

}

a {
    color: #18223C;
    text-decoration: none;
    letter-spacing: 2px;
    font-family: 'DIN Next Bold';
    background-image: linear-gradient(#EA611C, #EA611C);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size .3s;
}

a:hover,
a:focus {
    background-size: 100% 2px;
}



.accordion {
    display: flex;
    height: 30px;
}

.accordion-header {
    padding: 10px;
    cursor: pointer;
    color: #18223C;
    font-weight: bold;
    letter-spacing: 3px;
    font-family: 'DIN Next Bold';
}

.accordion-content {
    background-color: #f0f0f0;
    padding: 0px;
    display: none;
}

.accordion-content a {
    display: flex;
    flex-direction: column;
    line-height: 28px;
}

.accordion-item.active .accordion-content {
    display: block;
}


.btn-wpp {
    position: fixed;
    width: 55px;
    height: 55px;
    line-height: 55px;
    bottom: 30px;
    right: 30px;
    border-radius: 50px;
    text-align: center;
    z-index: 100;
}

.btn-wpp:hover {
    width: 64px;
    height: 64px;
    text-decoration: none;
    color: #EA611C;

}

main {
    background-color: #18223C;
    height: 100vh;
}

.proximamente-banner {
    display: flex;
    flex-direction: column;
    padding: 160px;
    align-items: center;
    gap: 50px;

}

h1 {
    font-size: 90PX;
    font-family: "DIN Next Black";
    color: #EA611C; 
}

img {
    width: 250px;
}

footer {
    background-color: #18223C;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.info-footer {
    display: flex;
    flex-direction: column;
    padding: 20px 0px;
}

.info-footer p {
    text-align: right;
    color: #fff;
    line-height: 28px;
    transform: translateX(-153px);

}

.copyright {
    color: #fff;
    padding: 50px 30px;
}