@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&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");

:root {
    --fonte-principal: "Poppins", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--fonte-principal);
}

body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 25px 20px 5px 20px;
    border-bottom: 4px solid #e0e0e0;
}

.logo {
    width: 4em;
    margin-right: 10em;
    margin-left: 1em;
}

.nav-icon {
    pointer-events: none;
    cursor: default;
}

.nav-list {
    display: flex;
    justify-content: space-evenly;
    list-style: none;
    gap: 50px;
}

.nav-item {
    text-align: center;
}

.nav-link {
    text-decoration: none;
    color: black;
    font-weight: 600;
    font-size: 20px;
}

.nav-link:hover {
    color: #35D0F2;
}

.nav-link.active:hover::after {
    color: #35D0F2;
    width: 150%;
    transition: width 0.3s ease;
}

.nav-link.active {
    color: #35D0F2;
}

.header-buttons {
    display: flex;
    align-items: center;
}

.btn {
    border: 2px solid #35D0F2;
    margin: 5px 15px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 10px;
    font-weight: 700;
    color: #000000;
    font-family: var(--fonte-principal);
}

.btn-entrar {
    margin-left: 1em;
    background-color: white;
    padding: 7px 35px;
}

.btn-criar {
    margin-right: 1.5em;
    background-color: #35D0F2;
    padding: 7px 20px;
}

.container {
    align-items: center;
    text-align: center;
    width: 100%;
}

.gepied {
    margin-top: 10px;
    width: 50%;
    margin-bottom: 10px;
}

.section-logo {
    width: 7em;
}

.section-title {
    font-size: 1.9em;
}

.section-imgs {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    margin-top: 30px;
}

.section-img {
    max-width: 60%;
    height: auto;
}

.section-text {
    font-size: 16px;
    margin-top: 100px;
    margin-bottom: 15px;
    font-weight: 600;
}

footer {
    text-align: center;
    padding: 20px 0;
    border-top: 4px solid #e0e0e0;
    width: 100%;
}

.footer-icons {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-icons a {
    margin: 0 10px;
    display: inline-block;
}

.footer-icons img {
    width: 80px;
}

.footer-text {
    font-size: 14px;
}

.mobile-menu,
.mobile-menu .icon {
    display: none;
}

i {
    margin-right: 10px;
    color: #31a6c0;
    font-size: 30px;
    cursor: pointer;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 35px;
    font-size: 16px;
    font-weight: 600;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid #007bff;
    border-radius: 10px; 
    z-index: 1000;
}

.dropdown-content.show {
    display: block;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #eee; 
    text-align: left;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
   
}

.aviso-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.aviso-modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 5px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.close-button {
    margin-top: 15px;
    padding: 8px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.close-button:hover {
    background-color: #45a049;
}


@media (max-width: 1380px) {
    header {
        padding: 25px 0 10px 0;
    }

    .logo {
        width: 4em;
        margin-right: 0;
        margin-left: 1em;
    }
}

@media (max-width: 1173px) {
    .nav-icon {
        pointer-events: auto;
        cursor: pointer;
    }

    header {
        padding: 10px 0;
        width: 100vw;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
        position: relative;
        border-bottom: 4px solid #e0e0e0;
    }

    .header-buttons {
        flex-shrink: 0;
    }

    .btn {
        padding: 7px 15px;
        font-size: 16px;
    }

    .nav-item {
        width: auto;
        padding: 0 10px;
    }

    .nav-link {
        font-size: 18px;
    }
}

@media (min-width: 1150px) and (max-width: 1370px) {
    header {
        border-bottom: none;
        position: relative;
    }

    header::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 4px;
        background-color: #e0e0e0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
}

@media (max-width: 1150px) {
    .nav-icon {
        pointer-events: auto;
        cursor: pointer;
    }

    header {
        padding: 10px 0;
        width: 100vw;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
        position: relative;
        border-bottom: none;
    }

    header::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 4px;
        background-color: #e0e0e0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }

    .nav-list,
    .header-buttons {
        display: none;
    }

    .mobile-menu {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .mobile-menu i {
        font-size: 26px;
        padding: 5px;
    }

    .mobile-menu .icon {
        font-size: 24px;
        cursor: pointer;
    }

    .logo {
        margin-left: 0;
        width: 50px;
    }

    .gepied {
        width: 80%;
    }

    .section-logo {
        width: 5em;
    }

    .section-title {
        font-size: 1.5em;
    }

    .section-imgs {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-img {
        max-width: 100%;
    }

    .footer-text {
        font-size: 12px;
    }

    .footer-icons {
        gap: 10px;
    }

    .footer-icons img {
        width: 60px;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .section-title {
        font-size: 1.7em;
    }

    .section-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.3em;
        line-height: 1.3;
    }

    .section-text {
        font-size: 14px;
        margin-top: 80px;
    }

    .section-logo {
        width: 4em;
    }

    .aviso-modal-content {
        width: 90%;
        padding: 15px;
    }

    .footer-icons img {
        width: 50px;
    }

    .footer-text {
        font-size: 11px;
    }
}