/* ===========================
   Base Styles
   =========================== */
.developers-modal .modal-dialog {
    max-width: 600px;
}

.developers-modal .modal-header {
    background: linear-gradient(135deg, #4157a3 0%, #5a6db8 100%);
    color: white;
    border-bottom: none;
}

.developers-modal .modal-title {
    font-size: 1.2rem;
    font-weight: 600;
}

.developers-modal .modal-body {
    padding: 2rem;
}

/* ===========================
   Containers
   =========================== */
.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-badges .badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.developer-card {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    background: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.developer-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: #4157a3;
}

.developer-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4157a3 0%, #5a6db8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(65, 87, 163, 0.3);
}

.developer-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.developer-info {
    margin-bottom: 0;
}

.developer-name {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.developer-role {
    margin: 0;
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.developer-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.developer-info h6 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.developer-info p {
    margin: 0;
    font-size: 0.9rem;
}

.system-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #4157a3;
}

.info-item {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item strong {
    color: #333;
    margin-right: 0.5rem;
}

/* ===========================
   Responsividade
   =========================== */
/* Mobile */
@media (max-width: 768px) {
    .developers-modal .modal-dialog {
        max-width: 95%;
        margin: 1rem auto;
    }

    .developers-modal .modal-body {
        padding: 1rem;
    }

    .tech-badges {
        justify-content: center;
    }

    .developer-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .developer-avatar {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .developer-content {
        align-items: center;
        text-align: center;
    }

    .developer-links {
        justify-content: center;
    }
}

/* Tablet */
@media screen and (min-width: 768px) and (max-width: 1200px) {
    /* Media query para tablet sem regras específicas do info-icon */
}

/* ===========================
   Botões
   =========================== */
.link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.link-btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.link-btn.linkedin {
    color: #0077b5;
    background-color: rgba(0, 119, 181, 0.1);
    border-color: rgba(0, 119, 181, 0.2);
}

.link-btn.linkedin:hover {
    background-color: #0077b5;
    color: white;
    border-color: #0077b5;
}

.link-btn.github {
    color: #333;
    background-color: rgba(51, 51, 51, 0.1);
    border-color: rgba(51, 51, 51, 0.2);
}

.link-btn.github:hover {
    background-color: #333;
    color: white;
    border-color: #333;
}

/* ===========================
   Modal Styles
   =========================== */
/* Estilos específicos do modal removidos - gerenciados pelo common_footer.css */