/* Estilos personalizados adicionais */

/* Efeitos subtis nas transições */
a, button, .bio-card {
    transition: all 0.2s ease;
}

/* Animação suave na página */
.container-custom {
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilo para os cards bio */
.bio-card {
    border-radius: 12px;
    overflow: hidden;
    animation: cardFadeIn 0.5s ease forwards;
    opacity: 0;
    background-color: white;
}

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animação para entrada dos cards */
.bio-card:nth-child(1) { animation-delay: 0.1s; transform: translateY(10px); }
.bio-card:nth-child(2) { animation-delay: 0.2s; transform: translateY(10px); }
.bio-card:nth-child(3) { animation-delay: 0.3s; transform: translateY(10px); }

/* Estilo para os badges */
.badge {
    font-size: 0.65rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    transform: translateY(0) rotate(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-weight: 600;
    position: absolute;
    top: 12px;
    right: 12px;
    color: white !important;
    z-index: 10;
}

/* Cores específicas para os badges */
.badge-green {
    background: linear-gradient(135deg, #22c55e, #16a34a) !important;
    border-color: rgba(34, 197, 94, 0.3);
}

.badge-yellow {
    background: linear-gradient(135deg, #eab308, #ca8a04) !important;
    border-color: rgba(234, 179, 8, 0.3);
}

.bio-card:hover .badge {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
    animation: badgePulse 1.5s ease-in-out infinite;
}

@keyframes badgePulse {
    0% { transform: translateY(-1px) scale(1); }
    50% { transform: translateY(-1px) scale(1.05); }
    100% { transform: translateY(-1px) scale(1); }
}

/* Links */
.bio-card a {
    display: inline-block;
    position: relative;
}

.bio-card a:hover {
    transform: translateX(3px);
}

/* Efeito de destaque para a foto de perfil */
.profile-image-container {
    position: relative;
    display: inline-block;
}

.profile-image-container::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(45deg, #3B82F6, #10B981);
    z-index: -1;
    opacity: 0.3;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.05); opacity: 0.2; }
    100% { transform: scale(1); opacity: 0.3; }
}

/* Responsividade refinada */
@media (max-width: 640px) {
    .bio-card {
        padding: 16px;
    }
    
    .container-custom {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .badge {
        font-size: 0.6rem;
        padding: 0.18rem 0.45rem;
        top: 10px;
        right: 10px;
    }
    
    .bio-card:hover .badge {
        animation: none;
    }
}

/* Estilo para tipografia mais limpa */
body {
    letter-spacing: -0.011em;
    line-height: 1.5;
    background-color: var(--color-bglight, #FFF8F8);
    color: #1f2937;
}

h1, h2, h3 {
    letter-spacing: -0.021em;
}

p {
    margin-bottom: 0;
} 