/* Estilos para la foto circular */
.profile-photo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    background-color: #f8f8f8;
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Efecto de brillo */
.profile-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shine 4s infinite;
    z-index: 1;
}

/* Efectos de animación */
@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Versión para móviles */
@media (max-width: 480px) {
    .profile-photo {
        width: 120px;
        height: 120px;
    }
}