/**
 * Estilos do Modal da Equipe - Minimalista
 * Custom Header & Footer Plugin
 */

/* Botão Equipe-T.i no copyright */
.team-link-btn {
    background: none;
    border: none;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    font-size: 20px;
    font-family: "Dancing Script", cursive;
    padding: 2px 4px;
    margin: 0;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.team-link-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.6));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-link-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.team-link-btn:hover::before {
    width: 100%;
}

.team-link-btn:active {
    transform: translateY(0);
}

/* Overlay do Modal */
.team-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(4px);
    z-index: 999998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Container do Modal */
.team-modal-container {
    background: #ffffff;
    border-radius: 16px;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Botão de Fechar */
.team-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 10;
    line-height: 1;
    padding: 0;
}

.team-modal-close:hover {
    background-color: #f5f5f5;
    color: #333;
}

/* Conteúdo do Modal */
.team-modal-content {
    padding: 35px 30px;
}

.team-modal-title {
    margin: 0 0 30px 0;
    font-size: 20px;
    font-weight: 600;
    color: #111;
    text-align: center;
    letter-spacing: -0.5px;
}

/* Lista da Equipe */
.team-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.team-member {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.team-member:hover {
    border-color: #e0e0e0;
    background: #fafafa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.team-member-info {
    flex: 1;
}

.team-member-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.team-member-name {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: -0.3px;
}

.team-member-badges {
    display: flex;
    gap: 6px;
}

/* Badges Minimalistas */
.team-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.team-badge-frontend {
    background-color: #e3f2fd;
    color: #1565c0;
}

.team-badge-backend {
    background-color: #f3e5f5;
    color: #7b1fa2;
}

/* Botão LinkedIn Minimalista */
.team-linkedin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: transparent;
    color: #0077b5;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    font-size: 16px;
    transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    flex-shrink: 0;
    margin-left: 15px;
}

.team-linkedin-btn:hover {
    background-color: #0077b5;
    color: #ffffff;
    border-color: #0077b5;
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 119, 181, 0.2);
}

.team-linkedin-btn:active {
    transform: scale(0.95);
}

/* Responsividade */
@media (max-width: 480px) {
    .team-modal-content {
        padding: 25px 20px;
    }
    
    .team-member-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    
    .team-member {
        align-items: flex-start;
    }
    
    .team-linkedin-btn {
        margin-top: 5px;
    }
