@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;800&display=swap');
* {
    padding: 0;
    margin: 0;
}

body {
    font-family: "Poppins", sans-serif;
}

ul {
    list-style: none;
    display: flex;
}

header {
    background-color: black;
    width: 100%;
    height: auto;
}

header .container {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}

header .container .img-fundo {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

header .container .img-fundo img {
    width: 100%;
    z-index: 0;
    position: relative;
}

header .container .fundo-cobertura {
    width: 100%;
    height: 100%;
    top: 0;
    background-color: rgba(0, 0, 0, 0.80);
    z-index: 50;
    position: absolute;
}

header .container .topo {
    position: absolute;
    z-index: 90;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    max-width: 1200px;
    height: 300px;
    color: #fff;
    display: flex;
    justify-content: space-around;
    .texto-topo {
        width: 45%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        span {
            color: #FF6600;
            font-size: 46px;
            font-weight: 800;
        }
        h3 {
            font-weight: 600;
            font-size: 27px;
        }
        h4 {
            font-weight: 400;
            font-size: 22px;
        }
    }
    .image-topo {
        width: 47%;
        overflow: hidden;
        img {
            width: 100%;
        }
    }
}

.topo-header {
    background-color: #FF6600;
    position: fixed;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 50px;
    padding: 5px 0;
    z-index: 100;
}

.topo-header .header-interno {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}

.topo-header .header-interno .logo-topo {
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    img {
        height: 90%;
    }
}

.topo-header .header-interno nav {
    display: flex;
    align-items: center;
    ul {
        gap: 20px;
        justify-content: space-between;
        li {
            color: #FFF;
            cursor: pointer;
        }
    }
}

.alerta {
    background: rgba(224, 76, 17, 0.95);
    color: #FFF;
    position: fixed;
    font-size: 46px;
    bottom: 0;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    z-index: 100;
}