/* --- CONFIGURACIÓN BASE --- */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #EAEAEA; 
    /* background-color: #EAEAEA; Gris claro de fondo */
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* --- TARJETA PRINCIPAL --- */
.main-card {
    width: 90%;
    max-width: 400px;
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 40px 20px;
    box-shadow: 0 10px 30px rgba(255, 240, 28, 0.185);
    text-align: center;
}

/* --- ESTILO PERFIL --- */
.logo-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50%;
    border: 3px solid #FFC107; /* Amarillo Sport Care */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.719);
}

.logo-wrapper img {
    width: 110%;
    height: auto;
}

h1 {
    font-size: 1.5rem;
    color: #2B2B2B;
    margin: 0 0 5px 0;
}

.subtitle {
    font-size: 0.95rem;
    color: #666;
    margin: 0 0 25px 0;
}

/* --- REDES SOCIALES (Círculos con sombra) --- */
.social-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.social-item {
    width: 45px;
    height: 45px;
    background-color: #FFFFFF;
    color: #2B2B2B;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
    border-radius: 50%; /* Hace el círculo perfecto */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.12); /* Sombra solicitada */
    transition: all 0.3s ease;
}

.social-item:hover {
    transform: translateY(-3px);
    background-color: #FFC107;
    box-shadow: 0 6px 15px rgba(255, 193, 7, 0.4);
}

/* --- BOTONES DE ENLACE --- */
.button-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn {
    background-color: #FFC107; /* Gris oscuro Sport Care */
    color: #000000;
    text-decoration: none;
    padding: 16px;
    border-radius: 40px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #444;
    transform: scale(1.02);
}

.dots {
    position: absolute;
    right: 20px;
    color: #FFC107; /* Detalle amarillo en los puntos */
    font-size: 1.2rem;
}