@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: poppins;
}

:root {
    --cor1: #104a55;
    --cor2: #024248;
    --cor3: #339795;
    --cor4: #071d41;
    --cor5: rgba(0, 0, 0, .1);
    --cor6: #39b54a;
    --cor7: #006837;
}

.header {
    background-color: #fff;
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, .12);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    float: left;
}

.header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    background-color: #fff;
}

.header li a {
    display: block;
    padding: 0.7em 0.5em;
    text-decoration: none;
    transition: .4s;
    border-bottom: 1px #f7f7f7 solid;
    color: #242424;
    font-size: 20px;
}

.header li a:hover,
.header .btn-mobile:hover {
    background-color: var(--cor3);
    color: #fff;
}

.header .foto-perfil {
    width: 50px;
    height: 50px;
    padding: 0;
    margin: 10px 0 0 10px;
}

.header .foto-perfil img {
    width: 100%;
    height: 100%;
}

.header .logo {
    display: block;
    float: left;
}

.header .logo img {
    width: 210px;
}

.header .nav {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
}

.header .mobile-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 28px 20px;
    position: relative;
    user-select: none;
}

.header .mobile-icon .hamburguer {
    background: #333;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
}

.header .mobile-icon .hamburguer:before,
.header .mobile-icon .hamburguer:after {
    background: #333;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.header .mobile-icon .hamburguer:before {
    top: 5px;
}

.header .mobile-icon .hamburguer:after {
    top: -5px;
}

/* menu btn */

.header .mobile-btn {
    display: none;
}

.header .mobile-btn:checked~.nav {
    max-height: 240px;
}

.header .mobile-btn:checked~.mobile-icon .hamburguer {
    background: transparent;
}

.header .mobile-btn:checked~.mobile-icon .hamburguer:before {
    transform: rotate(-45deg);
}

.header .mobile-btn:checked~.mobile-icon .hamburguer:after {
    transform: rotate(45deg);
}

.header .mobile-btn:checked~.mobile-icon:not(.steps) .hamburguer:before,
.header .mobile-btn:checked~.mobile-icon:not(.steps) .hamburguer:after {
    top: 0;
}

.content {
    float: left;
    width: 92%;
    margin: 0 4%;
    padding: 7px 0;
}

.main {
    margin: 8em 0 0 0;
    padding: 0 10%;
}

.main h1 {
    font-size: 36px;
    margin: .5em;
}

.main iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

.main h2 {
    font-size: 28px;
    margin: 1em 0 1em 0;
}

.main p {
    font-size: 20px;
    text-align: justify;
    margin: 0 0 1em;
}

.footer {
    margin-top: 3em;
    padding: 40px 0;
    background-color: var(--cor2);
    color: white;
}

.footer .email-footer {
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 24px;
    font-weight: 400;
}

.footer ul {
    padding: 0;
    list-style: none;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer li {
    display: inline-block;
    /* Change to inline-block for horizontal layout */
    padding: 0 10px;
}

.footer ul a {
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
}

.footer ul a:hover {
    opacity: 1;
}

.footer .copyright {
    margin-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #aaa;
    margin-bottom: 0;
}

.footer .footer-break {
    height: 2px;
    border-width: 0;
    color: gray;
    background-color: white;
    margin: 10px 0;
}

@media (min-width: 1280px) {
    .header li {
        float: left;
    }

    .header li a {
        padding: 15px 30px;
        margin-top: 7px;
        border-radius: 14px;
    }

    .header .nav {
        clear: none;
        float: right;
        max-height: none;
    }

    .header .mobile-icon {
        display: none;
    }

    .header .logo {
        padding-top: 7px;
        height: 100%;
    }
}

@media (min-width: 1280px) {
    .header li {
        float: left;
    }

    .header li a {
        padding: 15px 30px;
        margin-top: 7px;
        border-radius: 14px;
    }

    .header .nav {
        clear: none;
        float: right;
        max-height: none;
    }

    .header .mobile-icon {
        display: none;
    }

    .header .logo {
        padding-top: 7px;
        height: 100%;
    }
}

@media (max-width: 1025px) {}

@media (max-width: 450px) {
    .header .logo img {
        margin: 7px 0 0 0;
        width: 150px;
    }

    .main h1 {
        font-size: 30px;
    }
}