.portal-paciente-card {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 12px;
    padding: 20px;
    border: 2px dashed #2196F3;
    transition: all 0.3s;
}

.portal-paciente-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.2);
}

.portal-card-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.portal-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
}

.portal-text {
    flex: 1;
    min-width: 200px;
}

.portal-text h6 {
    color: #1565c0;
    margin-bottom: 5px;
    font-weight: 600;
}

.portal-text p {
    color: #555;
    font-size: 13px;
    margin: 0;
}

.btn-portal-paciente {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-portal-paciente:hover {
    transform: translateX(5px);
    color: white;
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.4);
}
