.role-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}
.role-card {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 40px;
    width: 340px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.role-card::before,
.role-card::after {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    opacity: 0.5;
}
.role-card::before {
    background: #E3F2FD;
    top: -80px;
    right: -80px;
}
.role-card::after {
    background: #F3E5F5;
    bottom: -80px;
    left: -80px;
}
.role-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.role-icon {
    width: 80px;
    height: 80px;
    background-color: #f1f5ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.role-icon i {
    font-size: 35px;
    color: #2563EB;
}
.role-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2563EB;
}
.role-description {
    color: #6B7280;
    margin-bottom: 25px;
    line-height: 1.5;
}
.role-button {
    background: linear-gradient(to right, #2563EB, #1D4ED8);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 15px 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}
.role-button:hover {
    background: linear-gradient(to right, #1D4ED8, #1E40AF);
    box-shadow: 0 6px 8px rgba(37, 99, 235, 0.3);
    transform: translateY(-1px);
}
.colaboradores-header {
    text-align: center;
    margin-bottom: 20px;
}
.colaboradores-subtext {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #6B7280;
}
.section-content {
    padding: 80px 0;
    background-image: linear-gradient(180deg, #fff 0%, #F1EAFF 100%);
    min-height: 80vh;
}
/* Estilos para los modales */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    width: 400px;
    max-width: 90%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.modal-container::before,
.modal-container::after {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    opacity: 0.5;
}

.modal-container::before {
    background: #E3F2FD;
    top: -80px;
    right: -80px;
}

.modal-container::after {
    background: #F3E5F5;
    bottom: -80px;
    left: -80px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #6B7280;
    transition: color 0.3s;
    z-index: 1;
}

.modal-close:hover {
    color: #374151;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.modal-title {
    font-size: 28px;
    font-weight: bold;
    color: #2563EB;
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 10px;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #D1D5DB;
    background-color: #F9FAFB;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: #2563EB;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
    outline: none;
}

.login-button {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(to right, #2563EB, #1D4ED8);
    color: white;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.login-button:hover {
    background: linear-gradient(to right, #1D4ED8, #1E40AF);
    box-shadow: 0 6px 8px rgba(37, 99, 235, 0.3);
    transform: translateY(-1px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modal-container {
        padding: 30px;
    }

    .modal-title {
        font-size: 24px;
    }
}