:root{--page-title-display:none;}/* Start custom CSS for shortcode, class: .elementor-element-f9e40c4 *//* Estilo para a página de detalhes do jogador */
.player-details {
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 20px auto;
    font-family: 'Ropa Sans', sans-serif;
}

/* Nome do jogador */
.player-details h2 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

/* Foto do jogador */
.player-details .player-photo {
    max-width: 150px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Informações sobre o jogador */
.player-details p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
    text-align: left;
}

/* Histórico de times */
.player-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.player-details ul li {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Títulos das seções */
.player-details h3 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 5px;
}

/* Alinhamento de detalhes e espaciamentos */
.player-details p strong {
    color: #0073aa;
}

.player-details ul li a {
    color: #0073aa;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.player-details ul li a:hover {
    color: #005f8a;
    text-decoration: underline;
}
.player-details a {
    color: #0073aa;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.player-details a:hover {
    color: #005f8a;
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    .player-details {
        padding: 15px;
    }

    .player-details h2 {
        font-size: 28px;
    }

    .player-details p {
        font-size: 16px;
    }

    .player-details ul li {
        font-size: 16px;
    }
}/* End custom CSS */