@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;
    font-family: var(--fonte-principal);
    box-sizing: border-box;
}

.profile-container, 
.profile-container * {
    box-sizing: content-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

body {
    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;
    width: 50%;
    margin: 0 auto;
    padding: 20px 20px;
    align-items: center;
}

.section-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.section h1 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.section .text {
    font-size: 16px;
    margin-bottom: 15px;
}

.profile-container {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: auto;
    margin-bottom: 16px;
    height: 200px;
}

.profile-image img {
    width: 150px;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    margin-left: 20px;
    flex: 1;
}

.profile-info h2 {
    margin-top: 10px;
    font-size: 20px;
    margin-bottom: 5px;
}

.profile-info h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #666;
}

.profile-info p {
    font-size: 12px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.profile-info a {
    color: #35D0F2;
    text-decoration: none;
}

.profile-info a:hover {
    text-decoration: underline;
}

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;
    }
}

@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;
    }

    .section {
        width: 90%;
        padding: 10px;
    }

    .section h1 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .profile-container {
        flex-direction: column;
        height: auto;
        text-align: center;
        padding: 15px;
    }

    .profile-image img {
        width: 80%;
        height: auto;
        margin: 0 auto;
    }

    .profile-info {
        margin-left: 0;
        margin-top: 10px;
    }

    .profile-info h2 {
        font-size: 18px;
    }

    .profile-info h3 {
        font-size: 14px;
    }

    .profile-info p {
        font-size: 12px;
    }

    .footer-text {
        font-size: 12px;
    }

    .footer-icons {
        gap: 10px;
    }

    .footer-icons img {
        width: 60px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .section h1 {
        font-size: 22px;
    }

    .profile-info h2 {
        font-size: 19px;
    }

    .profile-info h3 {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .section h1 {
        font-size: 18px;
        line-height: 1.3;
    }

    .profile-container {
        padding: 10px;
    }

    .profile-info h2 {
        font-size: 16px;
    }

    .profile-info h3 {
        font-size: 13px;
    }

    .profile-info p {
        font-size: 11px;
    }

    .footer-icons img {
        width: 50px;
    }

    .footer-text {
        font-size: 11px;
    }
}