/* ...existing code... */
body.credits-page {
    font-family: 'Inter', sans-serif;
    background-color: #dddddd;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.credits-screen-container {
    display: flex;
    background-image: url('../images/credits-background.webp');
    background-size: auto;
    background-position: center;
    background-repeat: repeat;
}

.credits-title-container {
    background-color: #e9e9e9;
    border-radius: 20px;
    padding: 4px 4px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 350px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: popup 0.8s ease-out forwards;
    display: flex;
    justify-content: center;
    align-items: center;
}

.credits-container {
    background-color: #ffffff00;
    padding: 30px 10px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 420px;
    text-align: center;
    margin: 35px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.credits-title {
    font-size: 2.5rem;
    color: #2c3d50;
    margin-bottom: 20px;
}

.credit-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
    width: 100%;
}

/* Mantendo apenas a versão mais abaixo das classes duplicadas */
.credit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    border-bottom: 1px solid #eee;
    width: 70%;
    text-align: left;
    margin-bottom: 25px;
    border-radius: 30px;
    background-color: #e4e4e4;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    animation: ascend 0.8s ease-out forwards;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.credit-item:last-child {
    border-bottom: none;
}

.credit-item:hover {
    transform: scale(1.025);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.credit-icon {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    margin-right: 30px;
    object-fit: cover;
    border: 2px solid #bdbdbd;
}

.credit-info {
    flex: 1;
}

.credit-name {
    font-size: 1.6rem;
    font-weight: bold;
    color: #253749;
    margin-bottom: 1px;
}

.credit-role {
    font-size: 1.2rem;
    color: #455e69;
}

@media (max-width: 600px) {
    .credits-container {
        padding: 20px;
    }

    .credits-title {
        font-size: 2rem;
    }

    .credit-item {
        flex-direction: column;
        text-align: center;
    }

    .credit-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Estilos para o título "Integrantes" */
.integrantes-title {
    font-size: 3rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 30px;
    padding: 10px 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

@media (max-width: 600px) {
    .integrantes-title {
        font-size: 2.5rem;
    }
}

/* ...existing code... */
.return-button {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 35px;
    height: 35px;
    z-index: 1000;
    background-image: url('../images/return-icon.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: transform 0.2s ease-in-out, opacity 0.3s ease;
}

.return-button:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/* Animações */
@keyframes ascend {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popup {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* ...existing code... */
