* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #18181b;
    color: #ffffff;
    line-height: 1.6;
}

.main {
    margin: 5% 10%;
}

.logo {
    max-width: 150px;
    margin: 20px auto;
}

.invite {
    font-size: 2rem;
    color: #f6832e;
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease-in-out;
}

.background {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('./imgs/WORK.png');
    background-size: auto;
    background-repeat: repeat;
    background-position: top right;
    z-index: -1;
}

.description {
    font-size: 1rem;
    color: #ffffff;
    margin: 10px 0 30px;
}

.instruction {
    font-size: 1rem;
    color: #f6832e;
    margin-bottom: 20px;
}

.content-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.illustration-container {
    flex: 1;
}

.illustration {
    width: 300px;
    height: 300px;
    background-color: #f6832e;
    border-radius: 50%;
    background-image: url('./imgs/illustration.png');
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 20px rgba(246, 131, 46, 0.7);
    transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.illustration:hover {
    box-shadow: 0 0 30px rgba(246, 131, 46, 1);
    transform: rotate(10deg) scale(1.1);
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    flex: 2;
}

.button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #242428;
    border-radius: 10px;
    padding: 15px 20px;
    min-height: 40px;
    width: 100%;
    color: #ffffff;
    font-size: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    text-align: left;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
    cursor: pointer;
}

.button:hover {
    background-color: #38383d;
    transform: translateY(-5px) scale(1.02);
}

.button i.icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

.button span {
    flex: 1;
}

.test-link {
    color: #f6832e;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.test-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.bi-icon,
.web-icon,
.backend-icon,
.it-icon {
    width: 3%;
    margin-right: 2%;
}

/* Responsividade */
@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .illustration {
        width: 250px;
        height: 250px;
    }

    .button-container {
        width: 100%;
    }

    .button {
        font-size: 0.9rem;
        padding: 10px 15px;
    }

    .button i.icon {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .main {
        margin: 5%;
    }

    .invite {
        font-size: 1.5rem;
        text-align: center;
    }

    .description,
    .instruction {
        font-size: 0.9rem;
        text-align: center;
    }

    .illustration {
        width: 200px;
        height: 200px;
    }

    .button {
        font-size: 0.8rem;
        padding: 8px 10px;
    }

    .button i.icon {
        width: 20px;
        height: 20px;
    }
}
