/* Estilos para a seção de Time */

/* Efeito de hover nos cards dos membros do time */
.team-avatar-container {
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.team-avatar-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,180,216,0.2) 0%, rgba(0,119,182,0) 70%);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1;
}

.team-avatar-container:hover::before {
    opacity: 1;
}

.team-avatar-container img {
    transition: all 0.5s ease;
}

.team-avatar-container:hover img {
    transform: scale(1.05);
}

.card-custom:hover .team-avatar-container {
    box-shadow: 0 15px 30px rgba(0, 180, 216, 0.5) !important;
}

/* Estilização dos cards de membros do time */
#time .card-custom {
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 180, 216, 0.1);
    overflow: hidden;
    position: relative;
}

#time .card-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--ainexaCyan) 0%, #0077b6 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

#time .card-custom:hover::before {
    transform: scaleX(1);
}

#time .card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Estilização dos nomes e cargos */
#time .h4 {
    font-weight: 600;
    transition: all 0.3s ease;
}

#time .card-custom:hover .h4 {
    color: var(--ainexaCyan);
}

#time .text-cyan {
    font-weight: 500;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Estilização dos ícones sociais */
#time .social-links {
    transition: all 0.3s ease;
}

#time .social-icon {
    transition: all 0.3s ease;
    background-color: rgba(0, 180, 216, 0.1);
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 5px;
}

#time .social-icon:hover {
    background-color: var(--ainexaCyan);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 180, 216, 0.4);
}

/* Animação para a seção */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#time .animate-on-scroll {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

/* Estilização do botão de vagas */
#time .btn-outline-purple {
    border: 2px solid var(--ainexaCyan);
    color: var(--ainexaCyan);
    background: transparent;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#time .btn-outline-purple:hover {
    background: linear-gradient(135deg, var(--ainexaCyan) 0%, #0077b6 100%);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 180, 216, 0.4);
    transform: translateY(-3px);
}
