@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;
}

.section {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    line-height: 1.6;
}

.section h1 {
    text-align: center;
    font-size: 28px;
    font-style: italic;
    margin-bottom: 20px;
}

.section .text {
    font-size: 16px;
    margin-bottom: 15px;
}

.section .text a {
    color: #007bff;
    text-decoration: underline;
}

.section p + p {
    margin-top: 20px;
}

.section-logo {
    width: 8em;
    margin-bottom: 20px;
}

.dev-section {
    text-align: center;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.dev-section ul {
    list-style-type: none; 
    padding: 0;
    margin: 0 auto; 
}

.dev-section li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.5;
}

.dev-section h2, 
.dev-section h3 {
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 22px;
}

.dev-section li:last-child {
    margin-bottom: 20px;
}

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 {
   
}


@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;
    }

    .section {
        padding: 30px 20px;
    }

    .section h1 {
        font-size: 24px;
    }

    .section .text {
        font-size: 15px;
    }

    .dev-section {
        padding: 15px;
    }

    .dev-section h2, 
    .dev-section h3 {
        font-size: 20px;
    }

    .dev-section li {
        font-size: 15px;
    }
}

@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;
        margin-right: 0;
        width: 50px;
    }

    .section {
        padding: 20px 20px; 
    }

    .section h1 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .section .text {
        font-size: 14px;
        margin-bottom: 12px;
        text-align: center;
        line-height: 1.6;
    }

    .section p + p {
        margin-top: 15px;
    }

    .section-logo {
        width: 5em;
        margin-bottom: 15px;
    }

    .dev-section {
        padding: 15px;
        text-align: center;
    }

    .dev-section h2, 
    .dev-section h3 {
        font-size: 18px;
        text-align: center;
        margin-bottom: 12px;
    }

    .dev-section li {
        font-size: 14px;
        margin-bottom: 8px;
        line-height: 1.4;
    }

    .footer-text {
        font-size: 12px;
    }

    .footer-icons {
        gap: 10px;
    }

    .footer-icons img {
        width: 60px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .section {
        padding: 25px 20px;
    }

    .section h1 {
        font-size: 22px;
    }

    .section .text {
        font-size: 15px;
    }

    .section-logo {
        width: 6em;
    }

    .dev-section h2, 
    .dev-section h3 {
        font-size: 19px;
    }

    .dev-section li {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 15px 20px;
    }

    .section h1 {
        font-size: 18px;
        line-height: 1.3;
    }

    .section .text {
        font-size: 13px;
        line-height: 1.5;
        text-align: center;
    }

    .section-logo {
        width: 4.5em;
    }

    .dev-section {
        padding: 10px;
    }

    .dev-section h2, 
    .dev-section h3 {
        font-size: 16px;
    }

    .dev-section li {
        font-size: 13px;
    }

    .footer-icons img {
        width: 50px;
    }

    .footer-text {
        font-size: 11px;
    }
}