/* Definindo estilo do corpo */
body {
    background-image: url('../img/gif3.gif');
    background-size: 100%;
    background-repeat: repeat;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}
.profile-container {
    display: flex;
    justify-content: center; 
    align-items: center;
    gap: 20px; 
    margin-bottom: 20px; 
}

/* Moldura da página no estilo arcade */
.arcade-frame {
    width: 90%;
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: linear-gradient(145deg, #4A0000, #0B0C10);
    border: 5px solid #EFBF04;
    border-radius: 15px;
    box-shadow: 0 0 20px #4A0000;
}

/* Título principal */
.arcade-title {
    text-align: center;
    font-size: 32px;
    color: #EFBF04;
    margin-bottom: 20px;
    text-shadow: 2px 2px #000;
}

/* Menu no topo com links */
.arcade-menu {
    text-align: center;
    margin-bottom: 20px;
}

.arcade-menu a {
    color: #EFBF04;
    margin: 0 15px;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 20px;
    border: 2px solid#EFBF04;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.arcade-menu a:hover {
    background-color: #EFBF04;
    color: #FFFFFF;
    transform: scale(1.1);
}

/* Estilo das seções */
section {
    margin-bottom: 40px;
    padding: 10px;
    border-top: 3px solid #EFBF04;
}

h2 {
    color: #EFBF04;
    text-shadow: 2px 2px #000;
    font-size: 24px;
}

h4 {
    color: #EFBF04;
    text-shadow: 2px 2px #000;
    font-size: 20px;
}

/* Projetos com links */
.project-item {
    margin: 20px 0;
    text-align: center;
    min-width: 100%;
    transition: transform 0.5s ease;
}

.project-item a {
    color: #FFFFFF;
    background-color: #4A0000;
    padding: 10px 20px;
    border: 2px solid #EFBF04;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.project-item a:hover {
    background-color: #EFBF04;
    color: #000;
    transform: scale(1.1);
}

/* Rodapé */
footer {
    text-align: center;
    margin-top: 20px;
    color: #888;
}

.profile-photo {
    width: 150px;
    height: auto;
    border-radius: 20%;
    display: block;
    margin: 0 auto 20px;
    border: 5px solid #EFBF04;
    box-shadow: 0 0 10px #4A0000;
}

.skill {
    margin-bottom: 15px;
}

.progress-bar {
    background-color: #333;
    border: 2px solid #4A0000;
    border-radius: 5px;
    width: 100%;
    height: 20px;
}

.progress {
    background-color: #EFBF04;
    height: 100%;
    border-radius: 5px;
    transition: width 0.5s ease;
}

.contact-box {
    background-color: #222;
    border: 2px solid #EFBF04;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px #EFBF04;
    color: #EFBF04;
    margin: 20px auto;
    max-width: 500px;
    text-align: center;
}

.contact-box a {
    color: #EFBF04;
    text-decoration: none;
}

.contact-box a:hover {
    text-decoration: underline;
}

.toggle-button {
    background-color: #4A0000;
    border: none;
    color: #EFBF04;
    padding: 10px 20px;
    cursor: pointer;
    margin-bottom: 10px;
    transition: background-color 0.3s;
}

.toggle-button:hover {
    background-color: #EFBF04;
    color: #4A0000;
}

/* Estilos para o carrossel */
.carousel {
    display: flex;
    align-items: center;
    justify-content: left;
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.carousel button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    height: 100%;
    width: 50px;
}

.carousel .prev {
    left: 10px;
}

.carousel .next {
    right: 10px;
}

.carousel-items {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 300px;
    margin: 0 10px;
    background-color: #222;
    color: #FFFFFF;
    padding: 10px;
    text-align: center;
    border: 2px solid #EFBF04;
    border-radius: 10px;
    box-shadow: 0 0 10px #EFBF04;
}

.carousel-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.carousel h3 {
    font-size: 18px;
    margin: 10px 0;
}

button.prev {
    background-color: #EFBF04;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: background-color 0.3s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

button.next {
    background-color: #EFBF04;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: background-color 0.3s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

button.prev {
    left: 10px;
}

button.next {
    right: 10px;
}

button.prev:hover,
button.next:hover {
    background-color: #0B0C10;
}

/* Ajuste para dispositivos móveis */
@media (max-width: 768px) {
    .carousel-item {
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    .carousel-item {
        min-width: 200px;
    }
}

.project-item {
    text-align: center;
    margin: 20px;
}

.project-cover {
    width: 100%;
    max-width: 200px;
    margin-bottom: 15px;
    border: 3px solid #EFBF04;
    border-radius: 8px;
    box-shadow: 0 0 10px #4A0000;
}

/* Ajustes para dispositivos móveis */
@media (max-width: 768px) {
    .project-item a {
        display: block;
        width: 75%;
        text-align: center;
        padding: 10px;
        font-size: 16px;
        margin: 10px 0;
    }

    button.prev,
    button.next {
        background-color: #4A0000;
        border: none;
        color: white;
        font-size: 30px;
        height: 100%;
        width: 50px;
        cursor: pointer;
        transition: background-color 0.3s;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
}

.artstation-link-container {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.artstation-button {
    width: 800px;
    display: flex;
    align-items: center;
    background-color: #4A0000;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.artstation-button:hover {
    background-color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
}

.artstation-logo {
    width: 40px;
    height: auto;
    margin-right: 10px;
}

