body {
    background: radial-gradient(circle at 30% 30%, rgba(60, 30, 90, 1) 0%, rgba(20, 10, 40, 1) 40%),
                radial-gradient(circle at 80% 70%, rgba(30, 0, 90, 1) 0%, rgba(10, 0, 30, 1) 50%),
                linear-gradient(135deg, #0b0033, #1a0033);
    margin-left: 65px;
    margin-right: 65px; 
    font-family: 'Times New Roman', Times, serif;
    color: #fff;
}


.perfil-contenedor {
    display: flex;
    flex-direction: column;
    align-items: left;
    width: 100%;
}


.portada {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative; 
}

.portada img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.boton-portada {
    position: absolute;
    top: 90%;
    right: 10px;
    transform: translateY(-50%);
    z-index: 1;
}

.boton-portada .btn-facebook {
    background-color: rgb(65, 65, 65);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
}

.boton-portada .btn-facebook:hover {
    background-color: #1d1d1d;
}


.foto-perfil-contenedor {
    position: relative;
    width: 200px;
    height: 200px;
    margin-top: -100px;
    margin-left: 20px; 
}

.foto-perfil {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid white;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.foto-perfil img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.foto-perfil-contenedor .btn-facebook {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgb(65, 65, 65);
    color: white;
    border: none;
    border-radius: 50%;
    padding: 7px 13px;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: background-color 0.2s ease;
    z-index: 3;
}

.foto-perfil-contenedor .btn-facebook:hover {
    background-color:  #1d1d1d;
}


.container {
    margin-top: 80px;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-size: 30px;
}

p {
    font-size: 1rem;
    margin: 10px 0;
    font-size: 20px;
}


.btn-light {
    color: #343a40;
    background-color: #fff;
    border: 1px solid #343a40;
    padding: 0.375rem 0.75rem;
    border-radius: 0.25rem;
}

.btn-light:hover {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

h3{
    text-align: center;
    font-weight: 700;
    font-size: 34px;
}

h5{
    font-size: 30px;
}

.card img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    background-color: #000;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 160px;
    height: 160px; 
    display: inline-block;
    transition: 0.3s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.stat-card:hover {
    transform: translateY(-6px) scale(1.03);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}