🚀 Auto-deploy: Camila atualizado em 25/05/2026 19:57:12

This commit is contained in:
2026-05-25 19:57:12 +00:00
parent 5b64769387
commit eebb629e1a
13 changed files with 473 additions and 8 deletions
+120
View File
@@ -1065,3 +1065,123 @@ code {
display: none;
}
}
/* ==========================================================================
ESTILOS DE AVATARES COM FOTO (MINIMALISTAS E ELEGANTES)
========================================================================== */
.avatar-profile-wrapper {
position: relative;
width: 110px;
height: 110px;
margin-bottom: 12px;
display: flex;
justify-content: center;
align-items: center;
}
.avatar-profile-img {
width: 100%;
height: 100%;
border-radius: 50%;
object-fit: cover;
border: 3px solid rgba(16, 163, 127, 0.4);
box-shadow: 0 0 20px rgba(16, 163, 127, 0.2);
z-index: 2;
transition: transform var(--transition-normal), border-color var(--transition-normal);
}
.avatar-profile-wrapper:hover .avatar-profile-img {
transform: scale(1.04);
border-color: var(--brand-green);
box-shadow: 0 0 25px rgba(16, 163, 127, 0.45);
}
.avatar-profile-pulse {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 50%;
border: 1.5px solid var(--brand-green);
opacity: 0.7;
z-index: 1;
animation: pulseGlow 3s cubic-bezier(0.24, 0, 0.38, 1) infinite;
pointer-events: none;
}
@keyframes pulseGlow {
0% {
transform: scale(0.96);
opacity: 0.8;
}
50% {
transform: scale(1.15);
opacity: 0;
}
100% {
transform: scale(0.96);
opacity: 0;
}
}
/* Sidebar Avatar */
.sidebar-avatar-wrapper {
width: 32px;
height: 32px;
border-radius: 50%;
overflow: hidden;
border: 1.5px solid rgba(255, 255, 255, 0.15);
display: flex;
align-items: center;
justify-content: center;
}
.sidebar-avatar-img {
width: 100%;
height: 100%;
object-fit: cover;
}
/* Welcome Logo Avatar */
.welcome-avatar-wrapper {
width: 72px;
height: 72px;
border-radius: 50%;
overflow: hidden;
border: 2px solid rgba(16, 163, 127, 0.3);
box-shadow: 0 0 20px var(--brand-glow);
display: flex;
align-items: center;
justify-content: center;
transition: transform var(--transition-normal);
}
.welcome-avatar-wrapper:hover {
transform: scale(1.05);
border-color: var(--brand-green);
}
.welcome-avatar-img {
width: 100%;
height: 100%;
object-fit: cover;
}
/* Chat Message Bot Avatar */
.bot-avatar-img-wrapper {
width: 32px;
height: 32px;
border-radius: 50%;
overflow: hidden;
border: 1.5px solid rgba(16, 163, 127, 0.3);
display: flex;
align-items: center;
justify-content: center;
}
.bot-avatar-img {
width: 100%;
height: 100%;
object-fit: cover;
}